commit | 719a789792588281cece059d94cbd5d01e1520f6 | [log] [tgz] |
---|---|---|
author | Hans Leidekker <hans@it.vu.nl> | Wed Sep 22 02:46:38 2004 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Sep 22 02:46:38 2004 +0000 |
tree | e8899f1f6bb7c95db16bae5671cb4dd9b64affd4 | |
parent | b6f53e371047f1eae486d1d8f3df0386ad0915c9 [diff] [blame] |
Fix signed/unsigned comparison warnings.
diff --git a/server/trace.c b/server/trace.c index fecc0bf..ac52fca 100644 --- a/server/trace.c +++ b/server/trace.c
@@ -117,7 +117,7 @@ static void dump_exc_record( const EXCEPTION_RECORD *rec ) { - int i; + unsigned int i; fprintf( stderr, "{code=%lx,flags=%lx,rec=%p,addr=%p,params={", rec->ExceptionCode, rec->ExceptionFlags, rec->ExceptionRecord, rec->ExceptionAddress );