Skip to content

Commit

Permalink
Changed FATELF_MAGIC to make it "look right" in a hex dump.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 9, 2009
1 parent f4473c3 commit ef5a364
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/fatelf.h
Expand Up @@ -11,7 +11,8 @@

#include <stdint.h>

#define FATELF_MAGIC (0x00Fa7E1f)
/* This is little endian on disk, and looks like "FA700E1F" in a hex editor. */
#define FATELF_MAGIC (0x1F0E70FA)
#define FATELF_FORMAT_VERSION (1)

/* This does not count padding for page alignment at the end. */
Expand Down

0 comments on commit ef5a364

Please sign in to comment.