projects
/
wine
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f14b3a
)
winhelp: Add missing case label "default". Found by Smatch (unreached code).
author
Michael Stefaniuc
<mstefani@redhat.de>
Wed, 18 Jul 2007 20:22:07 +0000
(22:22 +0200)
committer
Alexandre Julliard
<julliard@winehq.org>
Thu, 19 Jul 2007 09:57:26 +0000
(11:57 +0200)
programs/winhelp/winhelp.c
patch
|
blob
|
blame
|
history
diff --git
a/programs/winhelp/winhelp.c
b/programs/winhelp/winhelp.c
index
c61b552
..
59810bc
100644
(file)
--- a/
programs/winhelp/winhelp.c
+++ b/
programs/winhelp/winhelp.c
@@
-440,7
+440,8
@@
static LRESULT WINHELP_HandleCommand(HWND hSrcWnd, LPARAM lParam)
/* case HELP_PARTIALKEY: */
/* case HELP_MULTIKEY: */
/* case HELP_SETWINPOS: */
- WINE_FIXME("Unknown command (%x) for remote winhelp control\n", wh->command);
+ default:
+ WINE_FIXME("Unhandled command (%x) for remote winhelp control\n", wh->command);
break;
}
}