Commit 2f7480e5 authored by Filip Navara's avatar Filip Navara Committed by Alexandre Julliard

kernel: Fix the Mach-O binary magic.

parent 19d60d3c
......@@ -270,7 +270,7 @@ enum binary_type MODULE_GetBinaryType( HANDLE hfile, void **res_start, void **re
}
/* 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)
{
......
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