aboutsummaryrefslogtreecommitdiff
path: root/src/game/NPCHandler.h
diff options
context:
space:
mode:
authorSpp <none@none>2010-04-07 22:59:46 +0200
committerSpp <none@none>2010-04-07 22:59:46 +0200
commit49d05ba9aa1cd5c1f3ae96546283e6d03a037ff7 (patch)
treef7e6135573366a686c1f527e16a0a7d42a7877ff /src/game/NPCHandler.h
parentd19e12708001fbef2308be0e8cb5375a2ac7af48 (diff)
Code style (game + scripts only):
"( " --> "(" " )" --> ")" --HG-- branch : trunk
Diffstat (limited to 'src/game/NPCHandler.h')
-rw-r--r--src/game/NPCHandler.h4
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)