aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-01-22 17:45:25 -0700
committerBrian Paul <[email protected]>2013-01-25 15:41:39 -0700
commit869071dfb7d527a6f576d98775e5abeb67c81cc9 (patch)
tree091fe119c11a844ce1996ef6df058f702ee0a76e /src/gallium/auxiliary/util
parent1a15772b7cf3ce3f9d59ffb6972ed41911ac606c (diff)
util: silence MSVC signed/unsigned warnings in debug_get_flags_option()
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r--src/gallium/auxiliary/util/u_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_debug.c b/src/gallium/auxiliary/util/u_debug.c
index 6e8c5b99376..f4670f28c19 100644
--- a/src/gallium/auxiliary/util/u_debug.c
+++ b/src/gallium/auxiliary/util/u_debug.c
@@ -232,7 +232,7 @@ debug_get_flags_option(const char *name,
unsigned long result;
const char *str;
const struct debug_named_value *orig = flags;
- int namealign = 0;
+ unsigned namealign = 0;
str = os_get_option(name);
if(!str)