]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
make the LNOF header compiler friendlier
authorWolfgang Bumiller <blub@speed.at>
Sun, 6 Jan 2013 15:40:38 +0000 (16:40 +0100)
committerWolfgang Bumiller <blub@speed.at>
Sun, 6 Jan 2013 15:40:38 +0000 (16:40 +0100)
code.c

diff --git a/code.c b/code.c
index 779fcb020dca0f8d94c68664ca88588d99805523..713d98dbad964cfc80ff2350dce40d5684d93206 100644 (file)
--- a/code.c
+++ b/code.c
@@ -169,7 +169,6 @@ bool code_write(const char *filename, const char *lnofile) {
     util_endianswap(code_globals,    vec_size(code_globals),    sizeof(int32_t));
 
     if (lnofile) {
-        uint32_t lnotype = *(unsigned int*)"LNOF";
         uint32_t version = 1;
 
         fp = file_open(lnofile, "wb");
@@ -180,7 +179,7 @@ bool code_write(const char *filename, const char *lnofile) {
         util_endianswap(code_linenums, vec_size(code_linenums), sizeof(code_linenums[0]));
 
 
-        if (file_write(&lnotype,                        sizeof(lnotype),                        1,                       fp) != 1 ||
+        if (file_write("LNOF",                          4,                                      1,                       fp) != 1 ||
             file_write(&version,                        sizeof(version),                        1,                       fp) != 1 ||
             file_write(&code_header.defs.length,        sizeof(code_header.defs.length),        1,                       fp) != 1 ||
             file_write(&code_header.globals.length,     sizeof(code_header.globals.length),     1,                       fp) != 1 ||