From: Vinson Lee Date: Fri, 2 Apr 2010 08:14:24 +0000 (-0700) Subject: gallivm: Add fallthrough comment at end of case statement. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=82e289d355089952a217b14081bac8ffff04ab2e;p=mesa.git gallivm: Add fallthrough comment at end of case statement. The code is correct. Tell Coverity that the fallthrough case is intentional. --- 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 ++; }