Skip to content

Commit 4e8406b

Browse files
committed
1 parent 948169c commit 4e8406b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocaml/runtime/unix.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ void caml_print_timestamp(FILE* channel, int formatted)
483483
fprintf(channel, "%ld.%06d ", (long)tv.tv_sec, (int)tv.tv_usec);
484484
} else {
485485
struct tm tm;
486-
char tz[10] = "Z";
486+
char tz[64] = "Z";
487487
localtime_r(&tv.tv_sec, &tm);
488488
if (tm.tm_gmtoff != 0) {
489489
long tzhour = tm.tm_gmtoff / 60 / 60;

0 commit comments

Comments
 (0)