Filip Navara : kernel: Fix the Mach-O binary magic.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Dec 12 06:44:23 CST 2005


Module: wine
Branch: refs/heads/master
Commit: 2f7480e5afbbcaded9029e34eab323f40c6334a4
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=2f7480e5afbbcaded9029e34eab323f40c6334a4

Author: Filip Navara <xnavara at volny.cz>
Date:   Mon Dec 12 11:50:15 2005 +0100

kernel: Fix the Mach-O binary magic.

---

 dlls/kernel/module.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel/module.c b/dlls/kernel/module.c
index 360f534..c26345d 100644
--- a/dlls/kernel/module.c
+++ b/dlls/kernel/module.c
@@ -270,7 +270,7 @@ enum binary_type MODULE_GetBinaryType( H
     }
 
     /* Mach-o File with Endian set to Big Endian or Little Endian */
-    if (header.macho.magic == 0xfeedface || header.macho.magic == 0xecafdeef)
+    if (header.macho.magic == 0xfeedface || header.macho.magic == 0xcefaedfe)
     {
         switch(header.macho.filetype)
         {




More information about the wine-cvs mailing list