diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-29 11:10:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-29 11:10:10 (GMT) |
commit | b91af81bc4ee0138c07c96e938c4878e0a8c06d9 (patch) | |
tree | 305755843bb78eab3a9fa68148ec46585a11f31b /win/tclWinTime.c | |
parent | 7b4af51ed2c67661856796cc6669052b86bda825 (diff) | |
download | tcl-b91af81bc4ee0138c07c96e938c4878e0a8c06d9.zip tcl-b91af81bc4ee0138c07c96e938c4878e0a8c06d9.tar.gz tcl-b91af81bc4ee0138c07c96e938c4878e0a8c06d9.tar.bz2 |
more internal use of size_t (in stead of int)
Diffstat (limited to 'win/tclWinTime.c')
-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 f4e08fa..71a0366 100644 --- a/win/tclWinTime.c +++ b/win/tclWinTime.c @@ -353,7 +353,7 @@ NativeGetTime( || ((regs[0] & 0x00F00000) /* Extended family */ && (regs[3] & 0x10000000))) /* Hyperthread */ && (((regs[1]&0x00FF0000) >> 16)/* CPU count */ - == systemInfo.dwNumberOfProcessors)) { + == (int)systemInfo.dwNumberOfProcessors)) { timeInfo.perfCounterAvailable = TRUE; } else { timeInfo.perfCounterAvailable = FALSE; |