Skip to content

Commit 0a0c3d1

Browse files
author
jan.nijtmans
committed
Merge 8.7
2 parents 41e698d + 529756b commit 0a0c3d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generic/tclClock.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4699,7 +4699,7 @@ TzsetIfNecessary(void)
46994699
if (tz.was != NULL && tz.was != TZ_INIT_MARKER) {
47004700
Tcl_Free(tz.was);
47014701
}
4702-
tz.was = (WCHAR *) Tcl_Alloc(sizeof(WCHAR) * (wcslen(tzNow) + 1));
4702+
tz.was = (WCHAR *)Tcl_Alloc(sizeof(WCHAR) * (wcslen(tzNow) + 1));
47034703
wcscpy(tz.was, tzNow);
47044704
epoch = ++tz.epoch;
47054705
} else if (tzNow == NULL && tz.was != NULL) {

0 commit comments

Comments
 (0)