diff options
author | Haru <haru@dotalux.com> | 2018-02-07 04:13:05 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2018-02-10 01:23:16 +0100 |
commit | 952df452e7ac9a62c9bc2db3e26958649270f2f4 (patch) | |
tree | 6f653c6c829db2451dc20f13e0ab51f2b943d3e0 /src/map/intif.c | |
parent | ba28b56a6b3180c7d13c196ecb44fddd3d63a4f6 (diff) | |
download | hercules-952df452e7ac9a62c9bc2db3e26958649270f2f4.tar.gz hercules-952df452e7ac9a62c9bc2db3e26958649270f2f4.tar.bz2 hercules-952df452e7ac9a62c9bc2db3e26958649270f2f4.tar.xz hercules-952df452e7ac9a62c9bc2db3e26958649270f2f4.zip |
Clean up trailing whitespace and non-indent tabs
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/intif.c')
-rw-r--r-- | src/map/intif.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index c933ceb15..0e5cd3db2 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -751,7 +751,7 @@ int intif_party_leaderchange(int party_id,int account_id,int char_id) /** * Request clan member count - * + * * @param clan_id Id of the clan to have members counted * @param kick_interval Interval of the inactivity kick */ @@ -759,7 +759,7 @@ int intif_clan_membercount(int clan_id, int kick_interval) { if (intif->CheckForCharServer() || clan_id == 0 || kick_interval <= 0) return 0; - + WFIFOHEAD(inter_fd, 10); WFIFOW(inter_fd, 0) = 0x3044; WFIFOL(inter_fd, 2) = clan_id; @@ -791,7 +791,7 @@ void intif_parse_RecvClanMemberAction(int fd) ShowError("intif_parse_RecvClanMemberAction: Received invalid clan_id '%d'\n", clan_id); return; } - + if (count < 0) { ShowError("intif_parse_RecvClanMemberAction: Received invalid member count value '%d'\n", count); return; @@ -2599,10 +2599,10 @@ void intif_parse_RodexNotifications(int fd) /// Updates a mail /// flag: -/// 0 - user Read -/// 1 - user got Zeny -/// 2 - user got Items -/// 3 - delete +/// 0 - user Read +/// 1 - user got Zeny +/// 2 - user got Items +/// 3 - delete int intif_rodex_updatemail(int64 mail_id, int8 flag) { if (intif->CheckForCharServer()) |