Commit a09829bd authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

winedump: flags is a DWORD not a WORD (Coverity).

parent 4f96f4f4
...@@ -937,7 +937,7 @@ static void dump_dir_debug(void) ...@@ -937,7 +937,7 @@ static void dump_dir_debug(void)
printf("\n"); printf("\n");
} }
static inline void print_clrflags(const char *title, WORD value) static inline void print_clrflags(const char *title, DWORD value)
{ {
printf(" %-34s 0x%X\n", title, value); printf(" %-34s 0x%X\n", title, value);
#define X(f,s) if (value & f) printf(" %s\n", s) #define X(f,s) if (value & f) printf(" %s\n", s)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment