diff options
author | hobbs <hobbs> | 2000-12-10 03:25:38 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-12-10 03:25:38 (GMT) |
commit | 5a2dfc6be74e6cd79434fb22fa8223222e50f381 (patch) | |
tree | 9432c24d03dd6adbf2026ce8a06348ad8875e09c /win/tclWinTime.c | |
parent | 2d55e96489ed66550e1a990c249d3c6beeb93e4b (diff) | |
download | tcl-5a2dfc6be74e6cd79434fb22fa8223222e50f381.zip tcl-5a2dfc6be74e6cd79434fb22fa8223222e50f381.tar.gz tcl-5a2dfc6be74e6cd79434fb22fa8223222e50f381.tar.bz2 |
* win/tclWinTime.c (CalibrationThread): added lint return value to
prevent compiler warning. [Bug #125005]
Diffstat (limited to 'win/tclWinTime.c')
-rw-r--r-- | win/tclWinTime.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c index 5ddbc89..66bbe8a 100644 --- a/win/tclWinTime.c +++ b/win/tclWinTime.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinTime.c,v 1.6 2000/11/21 21:33:43 andreas_kupries Exp $ + * RCS: @(#) $Id: tclWinTime.c,v 1.7 2000/12/10 03:25:38 hobbs Exp $ */ #include "tclWinInt.h" @@ -685,11 +685,12 @@ CalibrationThread( LPVOID arg ) /* Run the calibration once a second */ for ( ; ; ) { - Sleep( 1000 ); UpdateTimeEachSecond(); - } + + /* lint */ + return (DWORD) 0; } /* |