mesa: Do not specify types in bitfields.
authorJosé Fonseca <jfonseca@vmware.com>
Tue, 30 Dec 2008 17:21:25 +0000 (17:21 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Tue, 30 Dec 2008 17:21:25 +0000 (17:21 +0000)
As advised by gcc -pedantic.

src/mesa/main/texenvprogram.c

index 2f90a34..bd33cb4 100644 (file)
@@ -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 {