From 5a2dfc6be74e6cd79434fb22fa8223222e50f381 Mon Sep 17 00:00:00 2001 From: hobbs Date: Sun, 10 Dec 2000 03:25:38 +0000 Subject: * win/tclWinTime.c (CalibrationThread): added lint return value to prevent compiler warning. [Bug #125005] --- win/tclWinTime.c | 7 ++++--- 1 file 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; } /* -- cgit v0.12