fix some format strings

svn path=/trunk/; revision=32488
This commit is contained in:
Christoph von Wittich 2008-02-26 13:09:41 +00:00
parent 1a43baa3d1
commit 518637c89c
2 changed files with 2 additions and 2 deletions

View file

@ -332,7 +332,7 @@ VOID PRINT_RECORD(PEVENTLOGRECORD pRec)
DPRINT("EventType = EVENTLOG_AUDIT_FAILURE\n");
break;
default:
DPRINT("EventType = %x\n");
DPRINT("EventType = %d\n", pRec->EventType);
}
DPRINT("NumStrings = %d\n", pRec->NumStrings);

View file

@ -205,7 +205,7 @@ BOOL LogfInitializeExisting(PLOGFILE LogFile)
if (*pdwRecSize2 != dwRecSize)
{
DPRINT1("Invalid size2 of record %d (%x) in %s\n",
DPRINT1("Invalid size2 of record %d (%x) in %S\n",
dwRecordsNumber, *pdwRecSize2, LogFile->LogName);
HeapFree(MyHeap, 0, RecBuf);
break;