From 6b1e15b2675553939313f9ce7fb334cef5a8be93 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sun, 22 May 2005 03:01:22 +0000 Subject: [PATCH] packed poo -- SVN revision: 14891 --- legacy/embryo/src/bin/embryo_cc_amx.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/embryo/src/bin/embryo_cc_amx.h b/legacy/embryo/src/bin/embryo_cc_amx.h index 16ca0b65bc..d5cb64e9bb 100644 --- a/legacy/embryo/src/bin/embryo_cc_amx.h +++ b/legacy/embryo/src/bin/embryo_cc_amx.h @@ -71,7 +71,7 @@ { unsigned int address; char name[sEXPMAX + 1]; - } AMX_FUNCSTUB __attribute__((packed)); + } __attribute__((packed)) AMX_FUNCSTUB; /* The AMX structure is the internal structure for many functions. Not all * fields are valid at all times; many fields are cached in local variables. @@ -108,7 +108,7 @@ cell reset_stk ; cell reset_hea ; cell *syscall_d; /* relocated value/address for the SYSCALL.D opcode */ - } AMX __attribute__((packed)); + } __attribute__((packed)) AMX; /* The AMX_HEADER structure is both the memory format as the file format. The * structure is used internaly. @@ -132,7 +132,7 @@ int pubvars ; /* the "public variables" table */ int tags ; /* the "public tagnames" table */ int nametable ; /* name table, file version 7 only */ - } AMX_HEADER __attribute__((packed)); + } __attribute__((packed)) AMX_HEADER; #define AMX_MAGIC 0xf1e0 enum