Fixed invalid C syntax.
This commit is contained in:
parent
eeb0062fbb
commit
82f403bd66
|
@ -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 == '\"')
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue