Commit 016b8bbe authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winhelp: Add missing case label "default". Found by Smatch (unreached code).

parent 0f14b3a5
...@@ -440,7 +440,8 @@ static LRESULT WINHELP_HandleCommand(HWND hSrcWnd, LPARAM lParam) ...@@ -440,7 +440,8 @@ static LRESULT WINHELP_HandleCommand(HWND hSrcWnd, LPARAM lParam)
/* case HELP_PARTIALKEY: */ /* case HELP_PARTIALKEY: */
/* case HELP_MULTIKEY: */ /* case HELP_MULTIKEY: */
/* case HELP_SETWINPOS: */ /* 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; break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment