kernel: Fix the Mach-O binary magic.

This commit is contained in:
Filip Navara 2005-12-12 11:50:15 +01:00 committed by Alexandre Julliard
parent 19d60d3c5a
commit 2f7480e5af
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{