Author: cwittich Date: Tue Nov 20 22:10:42 2007 New Revision: 30600
URL: http://svn.reactos.org/svn/reactos?rev=30600&view=rev Log: fix some format strings
Modified: trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c trunk/reactos/ntoskrnl/mm/marea.c
Modified: trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c... ============================================================================== --- trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c (original) +++ trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c Tue Nov 20 22:10:42 2007 @@ -171,12 +171,12 @@ } 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);
Modified: trunk/reactos/ntoskrnl/mm/marea.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/marea.c?rev=306... ============================================================================== --- trunk/reactos/ntoskrnl/mm/marea.c (original) +++ trunk/reactos/ntoskrnl/mm/marea.c Tue Nov 20 22:10:42 2007 @@ -713,7 +713,7 @@ NTAPI MmInitMemoryAreas(VOID) { - DPRINT("MmInitMemoryAreas()\n",0); + DPRINT("MmInitMemoryAreas()\n"); return(STATUS_SUCCESS); }