summaryrefslogtreecommitdiffstats
path: root/generic/tclClock.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-04-17 15:37:29 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-04-17 15:37:29 (GMT)
commit0a0c3d11d0c979abe50f20beffef8eb1809c2c56 (patch)
tree9972e01743b7cbd257250cf08ce7ac4d9f4699f8 /generic/tclClock.c
parent41e698df096f1c417ddb82b9383acb23bfe16d0e (diff)
parent529756be1e06eed8ac93bb38773413851f87e11e (diff)
downloadtcl-0a0c3d11d0c979abe50f20beffef8eb1809c2c56.zip
tcl-0a0c3d11d0c979abe50f20beffef8eb1809c2c56.tar.gz
tcl-0a0c3d11d0c979abe50f20beffef8eb1809c2c56.tar.bz2
Merge 8.7
Diffstat (limited to 'generic/tclClock.c')
-rw-r--r--generic/tclClock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclClock.c b/generic/tclClock.c
index 2ec7a37..dfde051 100644
--- a/generic/tclClock.c
+++ b/generic/tclClock.c
@@ -4699,7 +4699,7 @@ TzsetIfNecessary(void)
if (tz.was != NULL && tz.was != TZ_INIT_MARKER) {
Tcl_Free(tz.was);
}
- tz.was = (WCHAR *) Tcl_Alloc(sizeof(WCHAR) * (wcslen(tzNow) + 1));
+ tz.was = (WCHAR *)Tcl_Alloc(sizeof(WCHAR) * (wcslen(tzNow) + 1));
wcscpy(tz.was, tzNow);
epoch = ++tz.epoch;
} else if (tzNow == NULL && tz.was != NULL) {