dbghelp: Print the debug string and not the pointer to it.

This commit is contained in:
Michael Stefaniuc 2012-03-21 23:34:22 +01:00 committed by Alexandre Julliard
parent cbcf08a7df
commit 4cf695e164
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,8 @@ HANDLE WINAPI FindDebugInfoFileEx(PCSTR FileName, PCSTR SymbolPath,
PFIND_DEBUG_FILE_CALLBACK Callback,
PVOID CallerData)
{
FIXME("(%s %s %p %p %p): stub\n",
debugstr_a(FileName), debugstr_a(SymbolPath), debugstr_a(DebugFilePath), Callback, CallerData);
FIXME("(%s %s %s %p %p): stub\n", debugstr_a(FileName), debugstr_a(SymbolPath),
debugstr_a(DebugFilePath), Callback, CallerData);
return NULL;
}