time-util: fix typo

This commit is contained in:
Yu Watanabe 2020-12-14 22:57:06 +09:00 committed by Lennart Poettering
parent 61f8a7bd3e
commit 23d8003bb6
1 changed files with 1 additions and 1 deletions

View File

@ -1606,7 +1606,7 @@ TimestampStyle timestamp_style_from_string(const char *s) {
return t;
if (streq_ptr(s, "µs"))
return TIMESTAMP_US;
if (streq_ptr(s, "µs+uts"))
if (streq_ptr(s, "µs+utc"))
return TIMESTAMP_US_UTC;
return t;
}