localspl: Fix printing a NULL string.
This commit is contained in:
parent
bcc21c9b79
commit
975d9ed97a
|
@ -1678,7 +1678,7 @@ static BOOL WINAPI fpAddPortEx(LPWSTR pName, DWORD level, LPBYTE pBuffer, LPWSTR
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
FIXME("not implemented for %s (monitor %p: %s)\n",
|
FIXME("not implemented for %s (monitor %p: %s)\n",
|
||||||
debugstr_w(pMonitorName), pm, pm ? debugstr_w(pm->dllname) : NULL);
|
debugstr_w(pMonitorName), pm, pm ? debugstr_w(pm->dllname) : "(null)");
|
||||||
SetLastError(ERROR_INVALID_PARAMETER);
|
SetLastError(ERROR_INVALID_PARAMETER);
|
||||||
res = FALSE;
|
res = FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue