diff options
Diffstat (limited to 'src/game/NPCHandler.h')
-rw-r--r-- | src/game/NPCHandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/NPCHandler.h b/src/game/NPCHandler.h index 9008d4e87f5..98e2fd218d3 100644 --- a/src/game/NPCHandler.h +++ b/src/game/NPCHandler.h @@ -22,7 +22,7 @@ #define __NPCHANDLER_H // GCC have alternative #pragma pack(N) syntax and old gcc version not support pack(push,N), also any gcc version not support it at some platform -#if defined( __GNUC__ ) +#if defined(__GNUC__) #pragma pack(1) #else #pragma pack(push,1) @@ -37,7 +37,7 @@ struct PageText }; // GCC have alternative #pragma pack() syntax and old gcc version not support pack(pop), also any gcc version not support it at some platform -#if defined( __GNUC__ ) +#if defined(__GNUC__) #pragma pack() #else #pragma pack(pop) |