Warning fix.
This commit is contained in:
parent
937d0b2411
commit
cd26935c0f
|
@ -346,7 +346,7 @@ static void Control_DoLaunch(CPanel* panel, HWND hWnd, LPCSTR cmd)
|
||||||
}
|
}
|
||||||
end++;
|
end++;
|
||||||
}
|
}
|
||||||
while (ptr = strchr(buffer, (int) '"'))
|
while ((ptr = strchr(buffer, (int) '"')))
|
||||||
memmove(ptr, ptr+1, strlen(ptr));
|
memmove(ptr, ptr+1, strlen(ptr));
|
||||||
|
|
||||||
TRACE("cmd %s, extra %s, sp %d\n", buffer, debugstr_a(extraPmts), sp);
|
TRACE("cmd %s, extra %s, sp %d\n", buffer, debugstr_a(extraPmts), sp);
|
||||||
|
|
Loading…
Reference in New Issue