diff options
author | Haru <haru@dotalux.com> | 2016-07-02 18:59:30 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-02 18:59:30 +0200 |
commit | 657d772c70e07afc2188c200247f73f03879884d (patch) | |
tree | 8cc574e9b772a975027839762f48d752c3334d21 /src/map/atcommand.h | |
parent | 0b7498bd5c252094fd429b46be847dcd24066a2e (diff) | |
download | hercules-657d772c70e07afc2188c200247f73f03879884d.tar.gz hercules-657d772c70e07afc2188c200247f73f03879884d.tar.bz2 hercules-657d772c70e07afc2188c200247f73f03879884d.tar.xz hercules-657d772c70e07afc2188c200247f73f03879884d.zip |
Trivialities: indentation fixes
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/atcommand.h')
-rw-r--r-- | src/map/atcommand.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/atcommand.h b/src/map/atcommand.h index 0e7895825..ef8be7807 100644 --- a/src/map/atcommand.h +++ b/src/map/atcommand.h @@ -152,7 +152,8 @@ void atcommand_defaults(void); HPShared struct atcommand_interface *atcommand; /* stay here */ -#define ACMD(x) static bool atcommand_ ## x (const int fd, struct map_session_data* sd, const char* command, const char* message, struct AtCommandInfo *info) __attribute__((nonnull (2, 3, 4, 5))); \ - static bool atcommand_ ## x (const int fd, struct map_session_data* sd, const char* command, const char* message, struct AtCommandInfo *info) +#define ACMD(x) \ + static bool atcommand_ ## x (const int fd, struct map_session_data* sd, const char* command, const char* message, struct AtCommandInfo *info) __attribute__((nonnull (2, 3, 4, 5))); \ + static bool atcommand_ ## x (const int fd, struct map_session_data* sd, const char* command, const char* message, struct AtCommandInfo *info) #endif /* MAP_ATCOMMAND_H */ |