[ros-diffs] [fireball] 44924: Daniel Zimmermann <netzimme at aim.com> - Fix missing arguments for the call KdbpPrint() in differents places in kdbg_cli.c. See issue #5089 for more details.
fireball at svn.reactos.org
fireball at svn.reactos.org
Mon Jan 4 12:03:24 CET 2010
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 at 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?rev=44924&r1=44923&r2=44924&view=diff
==============================================================================
--- 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;
More information about the Ros-diffs
mailing list