Module: Mesa Branch: master Commit: f9a0d1e2346222848da6557b5c9bec3a475667ac URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f9a0d1e2346222848da6557b5c9bec3a475667ac
Author: José Fonseca <[email protected]> Date: Fri Apr 9 15:25:55 2010 +0100 util: Add missing break statement. --- src/gallium/auxiliary/util/u_format.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/gallium/auxiliary/util/u_format.c b/src/gallium/auxiliary/util/u_format.c index 6633257..c50c807 100644 --- a/src/gallium/auxiliary/util/u_format.c +++ b/src/gallium/auxiliary/util/u_format.c @@ -149,6 +149,7 @@ util_format_fits_8unorm(const struct util_format_description *format_desc) format_desc->channel[chan].size > 8) { return FALSE; } + break; default: return FALSE; } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
