wmaker: removed case from switch that is unreachable (Coverity #50043)
commit2ed24561ffb6c1f79dd3a65a7f9f1beaafd22e16
authorChristophe CURIS <christophe.curis@free.fr>
Sat, 15 Nov 2014 18:40:56 +0000 (15 19:40 +0100)
committerCarlos R. Mafra <crmafra@gmail.com>
Sun, 23 Nov 2014 22:43:38 +0000 (23 22:43 +0000)
tree4198e10e23f505e07c1ffdd1ca578042f798056b
parent6e8639c47dbceaf5722546da9fd271a12cefdda5
wmaker: removed case from switch that is unreachable (Coverity #50043)

There is a check a few line above that already return from the function
because there is nothing to do for that case, so the case statement cannot
be reached. As not all case are covered in that switch anyway that won't
make a difference, and because an 'int' is used instead of an 'enum' the
compiler will not be able complain anyway.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
Signed-off-by: Carlos R. Mafra <crmafra@gmail.com>
src/texture.c