diff options
Diffstat (limited to 'time')
-rw-r--r-- | time/test_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/time/test_time.c b/time/test_time.c index 9a24300fec..aac43852f2 100644 --- a/time/test_time.c +++ b/time/test_time.c @@ -67,7 +67,7 @@ main (int argc, char **argv) puts("localtime() failed."); lose = 1; } - else if (strftime(buf, sizeof(buf), "%a %b %d %X %Z %Y", tp) == 0) + else if (strftime (buf, sizeof (buf), "%a %b %d %X %Z %Y", tp) == 0) { puts("strftime() failed."); lose = 1; |