X-Git-Url: http://git.scottworley.com/tl-append/blobdiff_plain/0c5417d5f47201c1b423dd9bb710ccfde06417da..9b76e9d2c7bdd413e36432b64a0022852a484dea:/common.c 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;