winhelp: Add missing case label "default". Found by Smatch (unreached code).
authorMichael Stefaniuc <mstefani@redhat.de>
Wed, 18 Jul 2007 20:22:07 +0000 (22:22 +0200)
committerAlexandre Julliard <julliard@winehq.org>
Thu, 19 Jul 2007 09:57:26 +0000 (11:57 +0200)
programs/winhelp/winhelp.c

index c61b552..59810bc 100644 (file)
@@ -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;
         }
     }