Fixed invalid C syntax.

oldstable
Alexandre Julliard 2005-11-17 11:06:06 +00:00
parent eeb0062fbb
commit 82f403bd66
1 changed files with 1 additions and 2 deletions

View File

@ -33,8 +33,7 @@ static int CopyPathString(LPWSTR target, LPSTR source)
CHAR temp_buf[MAX_PATH];
INT i = 0;
while isspace(*source)
source++;
while (isspace(*source)) source++;
if (*source == '\"')
{