diff options
author | shennetsind <ind@henn.et> | 2014-01-11 15:32:29 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2014-01-11 15:32:29 -0200 |
commit | ab942065240450c3d2824a8a307f8a1b9bcf9516 (patch) | |
tree | fae1902e70f09434072e8816f9566ab093263b77 /src/common/socket.c | |
parent | 49641019d7b96ff0612161b2c9b2a7fea59f0fb1 (diff) | |
download | hercules-ab942065240450c3d2824a8a307f8a1b9bcf9516.tar.gz hercules-ab942065240450c3d2824a8a307f8a1b9bcf9516.tar.bz2 hercules-ab942065240450c3d2824a8a307f8a1b9bcf9516.tar.xz hercules-ab942065240450c3d2824a8a307f8a1b9bcf9516.zip |
Fixed Bug 7960
http://hercules.ws/board/tracker/issue-7960-scriptc-warnings/
Also applied a temporary adjustment due to ERS_OPT_CLEAN not being consistent (decent fix will follow up, haru and i are working on it) -- thanks to kyeme for pointing it out!
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common/socket.c')
-rw-r--r-- | src/common/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/socket.c b/src/common/socket.c index 1ffa15708..95333cdce 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -1407,7 +1407,7 @@ void socket_init(void) timer->add_interval(timer->gettick()+1000, connect_check_clear, 0, 0, 5*60*1000); #endif - ShowInfo("Server supports up to '"CL_WHITE"%lld"CL_RESET"' concurrent connections.\n", rlim_cur); + ShowInfo("Server supports up to '"CL_WHITE"%"PRId64""CL_RESET"' concurrent connections.\n", rlim_cur); /* Hercules Plugin Manager */ HPM->share(session,"session"); |