Some compilers don't like implicitly casting negative values to unsigned types

This commit is contained in:
Vas Crabb 2015-04-03 09:34:35 +11:00
parent 0a1b6b66b0
commit 80b4bd05e9

View File

@ -17,7 +17,7 @@
SYNCHRONIZATION INTERFACES - Events
***************************************************************************/
#define OSD_EVENT_WAIT_INFINITE -1
#define OSD_EVENT_WAIT_INFINITE (~(osd_ticks_t)0)
/* osd_event is an opaque type which represents a setable/resetable event */