diff options
author | Vinson Lee <vlee@vmware.com> | 2010-04-02 01:14:24 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-04-02 01:16:13 -0700 |
commit | 82e289d355089952a217b14081bac8ffff04ab2e (patch) | |
tree | 9ed6765a98ff16822306292cfb9ac871662ae191 | |
parent | c87e6e50ee02c8cda11d14a0ea242bb19e77300f (diff) |
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.c | 1 |
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 e4fa2c264c..153ba5b15b 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 ++; } |