localspl: Fix printing a NULL string.

This commit is contained in:
André Hentschel 2011-08-31 20:07:31 +02:00 committed by Alexandre Julliard
parent bcc21c9b79
commit 975d9ed97a
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }