From: Matt Turner Date: Sat, 11 Apr 2015 17:14:00 +0000 (-0700) Subject: swrast: Mark MAX_GLUINT literal with u suffix. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=89b140dfaeacb8fb0a784c8dd7da26b0d14189e8;p=mesa.git 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 --- diff --git a/src/mesa/swrast/s_tritemp.h b/src/mesa/swrast/s_tritemp.h index fb73b2d59ff..3cd1b44b0e9 100644 --- a/src/mesa/swrast/s_tritemp.h +++ b/src/mesa/swrast/s_tritemp.h @@ -92,7 +92,7 @@ #ifndef MAX_GLUINT -#define MAX_GLUINT 0xffffffff +#define MAX_GLUINT 0xffffffffu #endif