diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-03-15 15:00:15 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-03-15 15:00:15 +0100 |
commit | eabed01f8507fd75bda52d98ac6bc0d82a67d1b2 (patch) | |
tree | 4e9da6080c06cb3aa2edabe7dd740a86355e9402 | |
parent | 39b6baa030996fbbc429a99d0274ca7a9917fb3a (diff) |
sfeed_twtxt: fix error message if gmtime() fails, "localtime" -> "gmtime"
-rw-r--r-- | sfeed_twtxt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_twtxt.c b/sfeed_twtxt.c index cda85ee..ef80e2d 100644 --- a/sfeed_twtxt.c +++ b/sfeed_twtxt.c @@ -28,7 +28,7 @@ printfeed(FILE *fp, const char *feedname) if (strtotime(fields[FieldUnixTimestamp], &parsedtime)) continue; if (!(tm = gmtime(&parsedtime))) - err(1, "localtime"); + err(1, "gmtime"); fprintf(stdout, "%04d-%02d-%02dT%02d:%02d:%02dZ\t", tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, |