summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-04-02 01:14:24 -0700
committerVinson Lee <vlee@vmware.com>2010-04-02 01:16:13 -0700
commit82e289d355089952a217b14081bac8ffff04ab2e (patch)
tree9ed6765a98ff16822306292cfb9ac871662ae191
parentc87e6e50ee02c8cda11d14a0ea242bb19e77300f (diff)
downloadmesa-82e289d355089952a217b14081bac8ffff04ab2e.tar.gz
gallivm: Add fallthrough comment at end of case statement.
The code is correct. Tell Coverity that the fallthrough case is intentional.
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_printf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_printf.c b/src/gallium/auxiliary/gallivm/lp_bld_printf.c
index e4fa2c264c3..153ba5b15b1 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_printf.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_printf.c
@@ -54,6 +54,7 @@ lp_get_printf_arg_count(const char *fmt)
p += 3;
continue;
}
+ /* fallthrough */
default:
count ++;
}