diff options
author | Haru <haru@dotalux.com> | 2013-08-02 15:47:34 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-08-02 15:48:04 +0200 |
commit | f6991edd8a6fa2347460c7c1728ffa5643d0bec8 (patch) | |
tree | 9a4833ddef500b89607a61c07bb521ece5a9f207 /src | |
parent | b1ea50f67cec30d386669fc13864ccaa8b9a2cb6 (diff) | |
download | hercules-f6991edd8a6fa2347460c7c1728ffa5643d0bec8.tar.gz hercules-f6991edd8a6fa2347460c7c1728ffa5643d0bec8.tar.bz2 hercules-f6991edd8a6fa2347460c7c1728ffa5643d0bec8.tar.xz hercules-f6991edd8a6fa2347460c7c1728ffa5643d0bec8.zip |
Fixed MSVC build, follow-up to 38b8bf0
Thanks to Takkun for pointing it out.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 2f63ec5c0..273f145f2 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -17535,10 +17535,10 @@ int clif_parse(int fd) { // Note: "click masters" can do 80+ clicks in 10 seconds for( pnum = 0; pnum < 3; ++pnum ) { // Limit max packets per cycle to 3 (delay packet spammers) [FlavioJS] -- This actually aids packet spammers, but stuff like /str+ gets slow without it [Ai4rei] + unsigned short (*parse_cmd_func)(int fd, struct map_session_data *sd); // begin main client packet processing loop sd = (TBL_PC *)session[fd]->session_data; - unsigned short (*parse_cmd_func)(int fd, struct map_session_data *sd); if (session[fd]->flag.eof) { if (sd) { |