mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
fix some format strings
svn path=/trunk/; revision=30640
This commit is contained in:
parent
20d54e190b
commit
3da1b0d2e9
1 changed files with 4 additions and 4 deletions
|
@ -181,7 +181,7 @@ vfatReleaseFCB(PDEVICE_EXTENSION pVCB, PVFATFCB pFCB)
|
|||
ULONG ShortIndex;
|
||||
PVFATFCB tmpFcb;
|
||||
|
||||
DPRINT ("releasing FCB at %x: %wZ, refCount:%d\n",
|
||||
DPRINT ("releasing FCB at %p: %wZ, refCount:%d\n",
|
||||
pFCB,
|
||||
&pFCB->PathNameU,
|
||||
pFCB->RefCount);
|
||||
|
@ -562,7 +562,7 @@ vfatAttachFCBToFileObject (
|
|||
fileObject->SectionObjectPointer = &fcb->SectionObjectPointers;
|
||||
fileObject->FsContext = fcb;
|
||||
fileObject->FsContext2 = newCCB;
|
||||
DPRINT ("file open: fcb:%x PathName:%wZ\n", fcb, &fcb->PathNameU);
|
||||
DPRINT ("file open: fcb:%p PathName:%wZ\n", fcb, &fcb->PathNameU);
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
@ -590,7 +590,7 @@ vfatDirFindFile (
|
|||
ASSERT(pDirectoryFCB);
|
||||
ASSERT(FileToFindU);
|
||||
|
||||
DPRINT ("vfatDirFindFile(VCB:%08x, dirFCB:%08x, File:%wZ)\n",
|
||||
DPRINT ("vfatDirFindFile(VCB:%p, dirFCB:%p, File:%wZ)\n",
|
||||
pDeviceExt,
|
||||
pDirectoryFCB,
|
||||
FileToFindU);
|
||||
|
@ -666,7 +666,7 @@ vfatGetFCBForFile (
|
|||
PWCHAR curr, prev, last;
|
||||
ULONG Length;
|
||||
|
||||
DPRINT ("vfatGetFCBForFile (%x,%x,%x,%wZ)\n",
|
||||
DPRINT ("vfatGetFCBForFile (%p,%p,%p,%wZ)\n",
|
||||
pVCB,
|
||||
pParentFCB,
|
||||
pFCB,
|
||||
|
|
Loading…
Reference in a new issue