From: José Fonseca Date: Tue, 30 Dec 2008 17:21:25 +0000 (+0000) Subject: mesa: Do not specify types in bitfields. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9972d7147b1622074669111d72d85467c8c398cc;p=mesa.git mesa: Do not specify types in bitfields. As advised by gcc -pedantic. --- diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 2f90a342202..bd33cb4e055 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -55,8 +55,8 @@ struct texenvprog_cache_item #define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM) struct mode_opt { - GLubyte Source:4; - GLubyte Operand:3; + GLuint Source:4; + GLuint Operand:3; }; struct state_key {