2009-02-03 18:51 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/vm/thread.c
    * casting to pacify warning. The code is correct.
This commit is contained in:
Przemyslaw Czerpak
2009-02-03 17:46:58 +00:00
parent dc70d7602c
commit 834efe7a11
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-02-03 18:51 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/vm/thread.c
* casting to pacify warning. The code is correct.
2009-02-03 18:24 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* doc/en/hb_api.txt
* doc/en/hb_apird.txt

View File

@@ -917,7 +917,7 @@ static int hb_threadWait( PHB_THREADSTATE * pThreads, int iThreads,
if( timer <= curr )
fExit = TRUE;
else
ulMilliSec = timer - curr;
ulMilliSec = ( ULONG ) ( timer - curr );
}
#endif