Use new common flags and fix resulting warnings.

This commit is contained in:
Ben Laurie
2009-02-15 14:08:51 +00:00
parent 477fd4596f
commit b3f3407850
5 changed files with 6 additions and 6 deletions

View File

@@ -238,7 +238,7 @@ int RAND_poll(void)
t.tv_sec = 0;
t.tv_usec = usec;
if (FD_SETSIZE > 0 && fd >= FD_SETSIZE)
if (FD_SETSIZE > 0 && (unsigned)fd >= FD_SETSIZE)
{
/* can't use select, so just try to read once anyway */
try_read = 1;