diff options
Diffstat (limited to 'date.c')
-rw-r--r-- | date.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -276,7 +276,7 @@ int date_main(int argc, char **argv) | |||
276 | } | 276 | } |
277 | 277 | ||
278 | /* Print OUTPUT (after ALL that!) */ | 278 | /* Print OUTPUT (after ALL that!) */ |
279 | t_buff = malloc(201); | 279 | t_buff = xmalloc(201); |
280 | strftime(t_buff, 200, date_fmt, &tm_time); | 280 | strftime(t_buff, 200, date_fmt, &tm_time); |
281 | printf("%s\n", t_buff); | 281 | printf("%s\n", t_buff); |
282 | 282 | ||