aboutsummaryrefslogtreecommitdiff
path: root/src/game/DBCStructure.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/DBCStructure.h')
-rw-r--r--src/game/DBCStructure.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/DBCStructure.h b/src/game/DBCStructure.h
index f369e86a4b2..8c38c9ca3a3 100644
--- a/src/game/DBCStructure.h
+++ b/src/game/DBCStructure.h
@@ -32,7 +32,7 @@
// Structures using to access raw DBC data and required packing to portability
// 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)
@@ -1863,7 +1863,7 @@ struct WorldSafeLocsEntry
};
// 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)