Warning fix.

This commit is contained in:
Alexandre Julliard 2002-11-04 23:51:58 +00:00
parent 937d0b2411
commit cd26935c0f
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ static void Control_DoLaunch(CPanel* panel, HWND hWnd, LPCSTR cmd)
}
end++;
}
while (ptr = strchr(buffer, (int) '"'))
while ((ptr = strchr(buffer, (int) '"')))
memmove(ptr, ptr+1, strlen(ptr));
TRACE("cmd %s, extra %s, sp %d\n", buffer, debugstr_a(extraPmts), sp);