mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
- Misc cleanups/fixes.
svn path=/trunk/; revision=30771
This commit is contained in:
parent
2ab4945ae6
commit
99f11f71d9
2 changed files with 9 additions and 1 deletions
|
@ -7,6 +7,14 @@
|
|||
# define RTL_NUMBER_OF(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#endif
|
||||
|
||||
#ifndef STATIC
|
||||
#define STATIC static
|
||||
#endif
|
||||
|
||||
#ifndef CONST
|
||||
#define CONST const
|
||||
#endif
|
||||
|
||||
/* TYPES *********************************************************************/
|
||||
|
||||
/* from kdb.c */
|
||||
|
|
|
@ -195,7 +195,7 @@ KdbpEvaluateExpression(
|
|||
STATIC BOOLEAN
|
||||
KdbpCmdEvalExpression(ULONG Argc, PCHAR Argv[])
|
||||
{
|
||||
UINT i, len;
|
||||
ULONG i, len;
|
||||
ULONGLONG Result = 0;
|
||||
ULONG ul;
|
||||
LONG l = 0;
|
||||
|
|
Loading…
Reference in a new issue