Module: wine Branch: master Commit: 7b24ee7d1bf53332f597a23bf1479cc4f484f71d URL: http://source.winehq.org/git/wine.git/?a=commit;h=7b24ee7d1bf53332f597a23bf1...
Author: Andrew Talbot andrew.talbot@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)) {