From a695805ced5ea50c2c992b430fd8acf1c178f014 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Thu, 13 Jul 2006 20:06:08 +0100 Subject: [PATCH] winedump: Write-strings warnings fix. --- tools/winedump/pe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winedump/pe.c b/tools/winedump/pe.c index 6ef0607545e..da55f639514 100644 --- a/tools/winedump/pe.c +++ b/tools/winedump/pe.c @@ -139,7 +139,7 @@ static const char * const DirectoryNames[16] = { "IAT", "Delay IAT", "COM Descript", "" }; -static char *get_magic_type(WORD magic) +static const char *get_magic_type(WORD magic) { switch(magic) { case IMAGE_NT_OPTIONAL_HDR32_MAGIC: