* times.cc (time_ms::usecs): Coerce comparison to signed or whole test is a
no-op.
This commit is contained in:
		| @@ -1,3 +1,8 @@ | ||||
| 2005-05-28  Christopher Faylor  <cgf@timesys.com> | ||||
|  | ||||
| 	* times.cc (time_ms::usecs): Coerce comparison to signed or whole test | ||||
| 	is a no-op. | ||||
|  | ||||
| 2005-05-27  Christopher Faylor  <cgf@timesys.com> | ||||
|  | ||||
| 	* cygheap.h: Reference _cygheap_start via .cygheap section. | ||||
|   | ||||
| @@ -597,7 +597,7 @@ hires_ms::usecs (bool justdelta) | ||||
|   if (!minperiod) /* NO_COPY variable */ | ||||
|     prime (); | ||||
|   DWORD now = timeGetTime (); | ||||
|   if ((now - initime_ms) < 0) | ||||
|   if ((int) (now - initime_ms) < 0) | ||||
|     { | ||||
|       inited = 0; | ||||
|       prime (); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user