mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fix typos in debug messages
svn path=/trunk/; revision=15508
This commit is contained in:
parent
d74a4d1b37
commit
2e7e95a597
1 changed files with 3 additions and 3 deletions
|
@ -725,7 +725,7 @@ KeDumpStackFrames(PULONG Frame)
|
|||
&ResultLength );
|
||||
if ( !NT_SUCCESS(Status) )
|
||||
{
|
||||
DPRINT1("Can't dump stack frames: NtQueryVirtualMemory() failed: %x\n", Status );
|
||||
DPRINT1("Can't dump stack frames: MiQueryVirtualMemory() failed: %x\n", Status );
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -782,7 +782,7 @@ KeRosDumpStackFrames ( PULONG Frame, ULONG FrameCount )
|
|||
&ResultLength );
|
||||
if ( !NT_SUCCESS(Status) )
|
||||
{
|
||||
DPRINT1("Can't dump stack frames: NtQueryVirtualMemory() failed: %x\n", Status );
|
||||
DPRINT1("Can't dump stack frames: MiQueryVirtualMemory() failed: %x\n", Status );
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -834,7 +834,7 @@ KeRosGetStackFrames ( PULONG Frames, ULONG FrameCount )
|
|||
&ResultLength );
|
||||
if ( !NT_SUCCESS(Status) )
|
||||
{
|
||||
DPRINT1("Can't get stack frames: NtQueryVirtualMemory() failed: %x\n", Status );
|
||||
DPRINT1("Can't get stack frames: MiQueryVirtualMemory() failed: %x\n", Status );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue