From fac3282551f4e8022c1e41c3b5dd1a0f4aa6dd87 Mon Sep 17 00:00:00 2001 From: Austin English Date: Mon, 23 Aug 2010 08:33:19 -0500 Subject: [PATCH] winedump: Add Sparc CPU support. --- tools/winedump/pe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/winedump/pe.c b/tools/winedump/pe.c index c06db317acb..48578d68a39 100644 --- a/tools/winedump/pe.c +++ b/tools/winedump/pe.c @@ -62,6 +62,7 @@ const char *get_machine_str(int mach) case IMAGE_FILE_MACHINE_AMD64: return "AMD64"; case IMAGE_FILE_MACHINE_IA64: return "IA64"; case IMAGE_FILE_MACHINE_ARM: return "ARM"; + case IMAGE_FILE_MACHINE_SPARC: return "SPARC"; } return "???"; }