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

This commit is contained in:
Michael Stefaniuc 2007-07-18 22:22:07 +02:00 committed by Alexandre Julliard
parent 0f14b3a574
commit 016b8bbedd

View 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;
}
}