Author: fireball
Date: Mon Jan 4 12:03:23 2010
New Revision: 44924
URL:
http://svn.reactos.org/svn/reactos?rev=44924&view=rev
Log:
Daniel Zimmermann <netzimme(a)aim.com>
- Fix missing arguments for the call KdbpPrint() in
differents places in kdbg_cli.c.
See issue #5089 for more details.
Modified:
trunk/reactos/ntoskrnl/kdbg/kdb_cli.c
Modified: trunk/reactos/ntoskrnl/kdbg/kdb_cli.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/kdbg/kdb_cli.c?re…
==============================================================================
--- trunk/reactos/ntoskrnl/kdbg/kdb_cli.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/kdbg/kdb_cli.c [iso-8859-1] Mon Jan 4 12:03:23 2010
@@ -527,7 +527,7 @@
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 @@
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 @@
}
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 @@
}
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;