summaryrefslogtreecommitdiff
path: root/sfeed_twtxt.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2020-03-15 15:00:15 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2020-03-15 15:00:15 +0100
commiteabed01f8507fd75bda52d98ac6bc0d82a67d1b2 (patch)
tree4e9da6080c06cb3aa2edabe7dd740a86355e9402 /sfeed_twtxt.c
parent39b6baa030996fbbc429a99d0274ca7a9917fb3a (diff)
sfeed_twtxt: fix error message if gmtime() fails, "localtime" -> "gmtime"
Diffstat (limited to 'sfeed_twtxt.c')
-rw-r--r--sfeed_twtxt.c2
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,