X-Git-Url: http://git.scottworley.com/tl-append/blobdiff_plain/0c5417d5f47201c1b423dd9bb710ccfde06417da..ee028f60297c4f800d6bcd3433b4263e0c8714ca:/common.c?ds=sidebyside diff --git a/common.c b/common.c index 747111b..88e7b73 100644 --- a/common.c +++ b/common.c @@ -17,7 +17,7 @@ void die_err(const char *message) { exit(1); } -const char *encode_time(time_t t) { +char *encode_time(time_t t) { struct tm tm; localtime_r(&t, &tm); const size_t size = 20;