Commit cd26935c authored by Alexandre Julliard's avatar Alexandre Julliard

Warning fix.

parent 937d0b24
......@@ -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);
......
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