mirror of
https://github.com/reactos/reactos.git
synced 2025-04-29 18:48:53 +00:00
Daniel Zimmermann <netzimme@aim.com>
- Fix missing arguments for the call KdbpPrint() in differents places in kdbg_cli.c. See issue #5089 for more details. svn path=/trunk/; revision=44924
This commit is contained in:
parent
98ba6e212e
commit
bcfb4adf08
1 changed files with 4 additions and 4 deletions
|
@ -527,7 +527,7 @@ KdbpCmdDisassembleX(
|
|||
return TRUE;
|
||||
|
||||
if (Result > (ULONGLONG)(~((ULONG_PTR)0)))
|
||||
KdbpPrint("Warning: Address %I64x is beeing truncated\n");
|
||||
KdbpPrint("Warning: Address %I64x is beeing truncated\n",Result);
|
||||
|
||||
Address = (ULONG_PTR)Result;
|
||||
}
|
||||
|
@ -790,7 +790,7 @@ KdbpCmdBackTrace(
|
|||
return TRUE;
|
||||
|
||||
if (Result > (ULONGLONG)(~((ULONG_PTR)0)))
|
||||
KdbpPrint("Warning: Address %I64x is beeing truncated\n");
|
||||
KdbpPrint("Warning: Address %I64x is beeing truncated\n",Result);
|
||||
|
||||
Frame = (ULONG_PTR)Result;
|
||||
}
|
||||
|
@ -1133,7 +1133,7 @@ KdbpCmdBreakPoint(ULONG Argc, PCHAR Argv[])
|
|||
}
|
||||
|
||||
if (Result > (ULONGLONG)(~((ULONG_PTR)0)))
|
||||
KdbpPrint("%s: Warning: Address %I64x is beeing truncated\n", Argv[0]);
|
||||
KdbpPrint("%s: Warning: Address %I64x is beeing truncated\n", Argv[0],Result);
|
||||
|
||||
Address = (ULONG_PTR)Result;
|
||||
|
||||
|
@ -1491,7 +1491,7 @@ KdbpCmdMod(
|
|||
}
|
||||
|
||||
if (Result > (ULONGLONG)(~((ULONG_PTR)0)))
|
||||
KdbpPrint("%s: Warning: Address %I64x is beeing truncated\n", Argv[0]);
|
||||
KdbpPrint("%s: Warning: Address %I64x is beeing truncated\n", Argv[0],Result);
|
||||
|
||||
Address = (ULONG_PTR)Result;
|
||||
|
||||
|
|
Loading…
Reference in a new issue