| commit | d18140cef47e39aa6625dba6c74efdaa56671ba3 | [log] [tgz] |
|---|---|---|
| author | Joerg Mayer <jmayer@loplof.de> | Tue Dec 26 01:28:51 2000 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Tue Dec 26 01:28:51 2000 +0000 |
| tree | aa63f10f059ca7b71447fbc933b32078fc66a0c4 | |
| parent | 099f4c3786431a2c343dab441d51430422304fa6 [diff] [blame] |
Fix the trivial compiler warnings in debugger/ when compiling with -W - moved inline statements to front - fixed the trivial cases of signed/unsigned comparisons
diff --git a/debugger/expr.c b/debugger/expr.c index 3352c33..1051efa 100644 --- a/debugger/expr.c +++ b/debugger/expr.c
@@ -106,7 +106,7 @@ #define EXPR_TYPE_CAST 11 static char expr_list[4096]; -static int next_expr_free = 0; +static unsigned int next_expr_free = 0; /* * This is how we turn an expression address into the actual value.