Andrew Talbot : dmloader: Sign-compare warning fix.

Alexandre Julliard julliard at winehq.org
Thu Jul 31 07:18:12 CDT 2008


Module: wine
Branch: master
Commit: 7b24ee7d1bf53332f597a23bf1479cc4f484f71d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7b24ee7d1bf53332f597a23bf1479cc4f484f71d

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Wed Jul 30 22:35:53 2008 +0100

dmloader: Sign-compare warning fix.

---

 dlls/dmloader/debug.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/dmloader/debug.c b/dlls/dmloader/debug.c
index dbd8129..db85d76 100644
--- a/dlls/dmloader/debug.c
+++ b/dlls/dmloader/debug.c
@@ -433,7 +433,8 @@ const char *debugstr_dmreturn (DWORD code) {
 /* generic flag-dumping function */
 static const char* debugstr_flags (DWORD flags, const flag_info* names, size_t num_names){
 	static char buffer[128] = "", *ptr = &buffer[0];
-	unsigned int i, size = sizeof(buffer);
+	unsigned int i;
+	int size = sizeof(buffer);
 		
 	for (i=0; i < num_names; i++) {
 		if ((flags & names[i].val)) {




More information about the wine-cvs mailing list