Commit 82f403bd authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed invalid C syntax.

parent eeb0062f
...@@ -33,8 +33,7 @@ static int CopyPathString(LPWSTR target, LPSTR source) ...@@ -33,8 +33,7 @@ static int CopyPathString(LPWSTR target, LPSTR source)
CHAR temp_buf[MAX_PATH]; CHAR temp_buf[MAX_PATH];
INT i = 0; INT i = 0;
while isspace(*source) while (isspace(*source)) source++;
source++;
if (*source == '\"') if (*source == '\"')
{ {
......
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