From 2b3dee0fb271cdb67e366362241ef464fe4d64aa Mon Sep 17 00:00:00 2001 From: Austin English Date: Mon, 13 Oct 2008 01:34:57 -0500 Subject: [PATCH] winedump: fix a signed/unsigned warning. --- tools/winedump/emf.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/winedump/emf.c b/tools/winedump/emf.c index f3b6f50..c4d92c3 100644 --- a/tools/winedump/emf.c +++ b/tools/winedump/emf.c @@ -36,11 +36,11 @@ #include "winbase.h" #include "wingdi.h" -static const char *debugstr_wn(const WCHAR *wstr, int n) +static const char *debugstr_wn(const WCHAR *wstr, uint n) { static char buf[80]; char *p; - int i; + uint i; if (!wstr) return "(null)"; -- 1.5.4.3