diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-21 08:43:03 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-21 08:43:03 (GMT) |
commit | cfdc6e47f48c683df2628fa13d647d58ec755508 (patch) | |
tree | e7fec27b78ae4a65ade8010b9d7a345b7a9c56c7 | |
parent | bc8789e84006d564fd479cfbd2e05c9775c7abf0 (diff) | |
download | tcl-cfdc6e47f48c683df2628fa13d647d58ec755508.zip tcl-cfdc6e47f48c683df2628fa13d647d58ec755508.tar.gz tcl-cfdc6e47f48c683df2628fa13d647d58ec755508.tar.bz2 |
Unbreak Windows build (windows 32-bit only, not checked by GITHUB actions)
-rw-r--r-- | win/tclWinTime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c index a137df4..45338dd 100644 --- a/win/tclWinTime.c +++ b/win/tclWinTime.c @@ -524,7 +524,7 @@ IsPerfCounterAvailable(void) || ((regs[0] & 0x00F00000) /* Extended family */ && (regs[3] & 0x10000000))) /* Hyperthread */ && (((regs[1]&0x00FF0000) >> 16)/* CPU count */ - == (int)sy stemInfo.dwNumberOfProcessors)) { + == (int)systemInfo.dwNumberOfProcessors)) { timeInfo.perfCounterAvailable = TRUE; } else { timeInfo.perfCounterAvailable = FALSE; |