swrast: Mark MAX_GLUINT literal with u suffix.

Coverity is confused by the "float < int / 2" expression and suggests
casting MAX_GLUINT to unsigned, which I believe it was supposed to have
been already.

Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Matt Turner 2015-04-11 10:14:00 -07:00
parent 1c9db39d54
commit 89b140dfae

View file

@ -92,7 +92,7 @@
#ifndef MAX_GLUINT
#define MAX_GLUINT 0xffffffff
#define MAX_GLUINT 0xffffffffu
#endif