Commit 9519216f authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

winhlp32: Remove redundant comparison.

parent 061e2bbf
......@@ -1666,7 +1666,7 @@ int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show)
option = *cmdline;
if (option) cmdline++;
while (*cmdline && *cmdline == ' ') cmdline++;
while (*cmdline == ' ') cmdline++;
switch (option)
{
case 'i':
......
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