diff options
author | Joakim Sindholt <[email protected]> | 2010-06-01 20:11:30 +0200 |
---|---|---|
committer | Joakim Sindholt <[email protected]> | 2010-06-03 13:45:05 +0200 |
commit | 8413b92a6f761c55f9a9e51f09d57aa7922b15a8 (patch) | |
tree | 0fd27af1a67fcb7e663d92960d90d593a9546c66 /src/gallium/auxiliary | |
parent | fbeab4cbcea98db161aa5067c0bcef9ea44cb0de (diff) |
gallium: silence all debug_named_value related warnings
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_init.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init.c b/src/gallium/auxiliary/gallivm/lp_bld_init.c index e02a45114b0..174e20e11d9 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_init.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_init.c @@ -37,11 +37,11 @@ unsigned gallivm_debug = 0; static const struct debug_named_value lp_bld_debug_flags[] = { - { "tgsi", GALLIVM_DEBUG_TGSI }, - { "ir", GALLIVM_DEBUG_IR }, - { "asm", GALLIVM_DEBUG_ASM }, - { "nopt", GALLIVM_DEBUG_NO_OPT }, - {NULL, 0} + { "tgsi", GALLIVM_DEBUG_TGSI, NULL }, + { "ir", GALLIVM_DEBUG_IR, NULL }, + { "asm", GALLIVM_DEBUG_ASM, NULL }, + { "nopt", GALLIVM_DEBUG_NO_OPT, NULL }, + DEBUG_NAMED_VALUE_END }; #endif |