- Misc cleanups/fixes.

svn path=/trunk/; revision=30771
This commit is contained in:
Aleksey Bragin 2007-11-25 23:00:46 +00:00
parent 2ab4945ae6
commit 99f11f71d9
2 changed files with 9 additions and 1 deletions

View file

@ -7,6 +7,14 @@
# define RTL_NUMBER_OF(x) (sizeof(x) / sizeof((x)[0])) # define RTL_NUMBER_OF(x) (sizeof(x) / sizeof((x)[0]))
#endif #endif
#ifndef STATIC
#define STATIC static
#endif
#ifndef CONST
#define CONST const
#endif
/* TYPES *********************************************************************/ /* TYPES *********************************************************************/
/* from kdb.c */ /* from kdb.c */

View file

@ -195,7 +195,7 @@ KdbpEvaluateExpression(
STATIC BOOLEAN STATIC BOOLEAN
KdbpCmdEvalExpression(ULONG Argc, PCHAR Argv[]) KdbpCmdEvalExpression(ULONG Argc, PCHAR Argv[])
{ {
UINT i, len; ULONG i, len;
ULONGLONG Result = 0; ULONGLONG Result = 0;
ULONG ul; ULONG ul;
LONG l = 0; LONG l = 0;