diff options
Diffstat (limited to 'test-date.c')
-rw-r--r-- | test-date.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-date.c b/test-date.c index 8ec41c3118..6fe3e28b9d 100644 --- a/test-date.c +++ b/test-date.c @@ -14,7 +14,7 @@ int main(int argc, char **argv) memcpy(result, "bad", 4); parse_date(argv[i], result, sizeof(result)); t = strtoul(result, NULL, 0); - printf("%s -> %s -> %s\n", argv[i], result, ctime(&t)); + printf("%s -> %s -> %s", argv[i], result, ctime(&t)); } return 0; } |