summaryrefslogtreecommitdiff
path: root/src/common/socket.c
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-03 17:30:53 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-03 17:30:53 +0000
commitf010f32adb51f7d4d2648abd475a900ecf07bafa (patch)
tree0e0eb9dd2bdc4bb2c88641c8a44d34ade9a2d7ac /src/common/socket.c
parente68708d62551a95f47af75bb843bb7a8c32a549c (diff)
downloadhercules-f010f32adb51f7d4d2648abd475a900ecf07bafa.tar.gz
hercules-f010f32adb51f7d4d2648abd475a900ecf07bafa.tar.bz2
hercules-f010f32adb51f7d4d2648abd475a900ecf07bafa.tar.xz
hercules-f010f32adb51f7d4d2648abd475a900ecf07bafa.zip
Added a missing client update when the mute status is manually cancelled by a GM
(followup to r12079) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12169 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/socket.c')
-rw-r--r--src/common/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/socket.c b/src/common/socket.c
index 7f7160f26..2e2182784 100644
--- a/src/common/socket.c
+++ b/src/common/socket.c
@@ -575,7 +575,7 @@ int realloc_writefifo(int fd, size_t addition)
while( session[fd]->wdata_size + addition > newsize ) newsize += newsize;
}
else
- if( session[fd]->max_wdata >= 2*(session[fd]->flag.server?FIFOSIZE_SERVERLINK:WFIFO_SIZE)
+ if( session[fd]->max_wdata >= (size_t)2*(session[fd]->flag.server?FIFOSIZE_SERVERLINK:WFIFO_SIZE)
&& (session[fd]->wdata_size+addition)*4 < session[fd]->max_wdata )
{ // shrink rule, shrink by 2 when only a quarter of the fifo is used, don't shrink below nominal size.
newsize = session[fd]->max_wdata / 2;