diff options
| -rw-r--r-- | generic/tclClock.c | 2 |
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) { |
