···261261 {
262262 if ((Address >= MmSystemRangeStart) || Add2Ptr(Address, PAGE_SIZE) >= MmSystemRangeStart)
263263 {
264264- DPRINT1("Process %p given for kernel-mode mapping at %p -- %lu pages starting at %Ix\n", Process, Address);
264264+ DPRINT1("Process %p given for kernel-mode mapping at %p\n", Process, Address);
265265 KeBugCheck(MEMORY_MANAGEMENT);
266266 }
267267···625625 {
626626 if ((Address >= MmSystemRangeStart) || Add2Ptr(Address, PAGE_SIZE) >= MmSystemRangeStart)
627627 {
628628- DPRINT1("Process %p given for kernel-mode mapping at %p -- %lu pages starting at %Ix\n", Process, Address);
628628+ DPRINT1("Process %p given for kernel-mode mapping at %p -- 1 page starting at %Ix\n",
629629+ Process, Address, Page);
629630 KeBugCheck(MEMORY_MANAGEMENT);
630631 }
631632
+2-2
ntoskrnl/se/token.c
···63526352 KernelMode, &NewToken);
63536353 if (!NT_SUCCESS(Status))
63546354 {
63556355- DPRINT1("NtOpenThreadTokenEx(): Failed to duplicate the token (Status 0x%lx)\n");
63556355+ DPRINT1("NtOpenThreadTokenEx(): Failed to duplicate the token (Status 0x%lx)\n", Status);
63566356 }
6357635763586358 ObReferenceObject(NewToken);
···63936393 Status = PsImpersonateClient(Thread, NewToken, FALSE, EffectiveOnly, ImpersonationLevel);
63946394 if (!NT_SUCCESS(Status))
63956395 {
63966396- DPRINT1("NtOpenThreadTokenEx(): Failed to impersonate the client (Status 0x%lx)\n");
63966396+ DPRINT1("NtOpenThreadTokenEx(): Failed to impersonate the client (Status 0x%lx)\n", Status);
63976397 }
63986398 }
63996399
+2-1
ntoskrnl/wmi/smbios.c
···182182 'BTMS');
183183 if (BiosTables == NULL)
184184 {
185185- DPRINT1("Failed to allocate %lu bytes for the SMBIOS table\n");
185185+ DPRINT1("Failed to allocate %lu bytes for the SMBIOS table\n",
186186+ HeaderSize + TableSize);
186187 return STATUS_INSUFFICIENT_RESOURCES;
187188 }
188189
+1-1
win32ss/user/ntuser/defwnd.c
···414414 * RealUserDrawCaption in order to draw the classic caption when themes
415415 * are disabled but the themes service is enabled
416416 */
417417- TRACE("UDCB Flags %08x\n");
417417+ TRACE("UDCB Flags %08x\n", Flags);
418418 co_IntSendMessage(UserHMGetHandle(pWnd), WM_NCUAHDRAWCAPTION, Flags, 0);
419419 }
420420 else