Re: [Mesa-dev] [PATCH] swrast: Fix some static analysis warnings

2011-11-28 Thread Brian Paul
On 11/28/2011 12:47 PM, Chad Versace wrote: To each switch statement in s_texfilter.c, add a break statement to the default case. Eliminates the Eclipse static analysis warning: No break at the end of this case. Signed-off-by: Chad Versace That's pretty picky, but OK by me. Reviewed-by: Bria

[Mesa-dev] [PATCH] swrast: Fix some static analysis warnings

2011-11-28 Thread Chad Versace
To each switch statement in s_texfilter.c, add a break statement to the default case. Eliminates the Eclipse static analysis warning: No break at the end of this case. Signed-off-by: Chad Versace --- src/mesa/swrast/s_texfilter.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-