mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:23:34 +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;
|
ULONG ShortIndex;
|
||||||
PVFATFCB tmpFcb;
|
PVFATFCB tmpFcb;
|
||||||
|
|
||||||
DPRINT ("releasing FCB at %x: %wZ, refCount:%d\n",
|
DPRINT ("releasing FCB at %p: %wZ, refCount:%d\n",
|
||||||
pFCB,
|
pFCB,
|
||||||
&pFCB->PathNameU,
|
&pFCB->PathNameU,
|
||||||
pFCB->RefCount);
|
pFCB->RefCount);
|
||||||
|
@ -562,7 +562,7 @@ vfatAttachFCBToFileObject (
|
||||||
fileObject->SectionObjectPointer = &fcb->SectionObjectPointers;
|
fileObject->SectionObjectPointer = &fcb->SectionObjectPointers;
|
||||||
fileObject->FsContext = fcb;
|
fileObject->FsContext = fcb;
|
||||||
fileObject->FsContext2 = newCCB;
|
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;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
@ -590,7 +590,7 @@ vfatDirFindFile (
|
||||||
ASSERT(pDirectoryFCB);
|
ASSERT(pDirectoryFCB);
|
||||||
ASSERT(FileToFindU);
|
ASSERT(FileToFindU);
|
||||||
|
|
||||||
DPRINT ("vfatDirFindFile(VCB:%08x, dirFCB:%08x, File:%wZ)\n",
|
DPRINT ("vfatDirFindFile(VCB:%p, dirFCB:%p, File:%wZ)\n",
|
||||||
pDeviceExt,
|
pDeviceExt,
|
||||||
pDirectoryFCB,
|
pDirectoryFCB,
|
||||||
FileToFindU);
|
FileToFindU);
|
||||||
|
@ -666,7 +666,7 @@ vfatGetFCBForFile (
|
||||||
PWCHAR curr, prev, last;
|
PWCHAR curr, prev, last;
|
||||||
ULONG Length;
|
ULONG Length;
|
||||||
|
|
||||||
DPRINT ("vfatGetFCBForFile (%x,%x,%x,%wZ)\n",
|
DPRINT ("vfatGetFCBForFile (%p,%p,%p,%wZ)\n",
|
||||||
pVCB,
|
pVCB,
|
||||||
pParentFCB,
|
pParentFCB,
|
||||||
pFCB,
|
pFCB,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue