mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 20:32:18 +00:00
fix some format strings
svn path=/trunk/; revision=30600
This commit is contained in:
parent
78be83f3a8
commit
8082ec1aff
2 changed files with 3 additions and 3 deletions
|
@ -171,12 +171,12 @@ IopStartDevice(
|
|||
}
|
||||
else
|
||||
{
|
||||
DPRINT("IopTranslateDeviceResources() failed (Status 0x08lx)\n", Status);
|
||||
DPRINT("IopTranslateDeviceResources() failed (Status 0x%08lx)\n", Status);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DPRINT("IopAssignDeviceResources() failed (Status 0x08lx)\n", Status);
|
||||
DPRINT("IopAssignDeviceResources() failed (Status 0x%08lx)\n", Status);
|
||||
}
|
||||
IopDeviceNodeClearFlag(DeviceNode, DNF_ASSIGNING_RESOURCES);
|
||||
|
||||
|
|
|
@ -713,7 +713,7 @@ INIT_FUNCTION
|
|||
NTAPI
|
||||
MmInitMemoryAreas(VOID)
|
||||
{
|
||||
DPRINT("MmInitMemoryAreas()\n",0);
|
||||
DPRINT("MmInitMemoryAreas()\n");
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue