Module: wine Branch: master Commit: 5ff42c55f74205cb814bb39fb8fe8fc779bb486c URL: http://source.winehq.org/git/wine.git/?a=commit;h=5ff42c55f74205cb814bb39fb8...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Aug 19 21:33:33 2008 +0200
d3dxof: Remove unreachable break after return (Smatch).
---
dlls/d3dxof/d3dxof.c | 12 ------------ 1 files changed, 0 insertions(+), 12 deletions(-)
diff --git a/dlls/d3dxof/d3dxof.c b/dlls/d3dxof/d3dxof.c index f16dce1..54d78a1 100644 --- a/dlls/d3dxof/d3dxof.c +++ b/dlls/d3dxof/d3dxof.c @@ -275,7 +275,6 @@ static BOOL is_space(char c) case ' ': case '\t': return TRUE; - break; } return FALSE; } @@ -295,7 +294,6 @@ static BOOL is_operator(char c) case ',': case ';': return TRUE; - break; } return FALSE; } @@ -311,34 +309,24 @@ static WORD get_operator_token(char c) { case '{': return TOKEN_OBRACE; - break; case '}': return TOKEN_CBRACE; - break; case '[': return TOKEN_OBRACKET; - break; case ']': return TOKEN_CBRACKET; - break; case '(': return TOKEN_OPAREN; - break; case ')': return TOKEN_CPAREN; - break; case '<': return TOKEN_OANGLE; - break; case '>': return TOKEN_CANGLE; - break; case ',': return TOKEN_COMMA; - break; case ';': return TOKEN_SEMICOLON; - break; } return 0; }