diff options
author | madmaxoft <github@xoft.cz> | 2014-05-01 22:58:58 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-05-01 22:58:58 +0200 |
commit | ed75d3a8364f360b213956c40c51729ea53f3616 (patch) | |
tree | b8132579e26097d4a23f8ac02603474a0766a2f6 /src/ClientHandle.cpp | |
parent | Fixed warnings in cByteBuffer. (diff) | |
download | cuberite-ed75d3a8364f360b213956c40c51729ea53f3616.tar cuberite-ed75d3a8364f360b213956c40c51729ea53f3616.tar.gz cuberite-ed75d3a8364f360b213956c40c51729ea53f3616.tar.bz2 cuberite-ed75d3a8364f360b213956c40c51729ea53f3616.tar.lz cuberite-ed75d3a8364f360b213956c40c51729ea53f3616.tar.xz cuberite-ed75d3a8364f360b213956c40c51729ea53f3616.tar.zst cuberite-ed75d3a8364f360b213956c40c51729ea53f3616.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 2362abe1e..7a4158491 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -1658,7 +1658,7 @@ void cClientHandle::SendData(const char * a_Data, size_t a_Size) { // There is a queued overflow. Append to it, then send as much from its front as possible m_OutgoingDataOverflow.append(a_Data, a_Size); - int CanFit = m_OutgoingData.GetFreeSpace(); + size_t CanFit = m_OutgoingData.GetFreeSpace(); if (CanFit > 128) { // No point in moving the data over if it's not large enough - too much effort for too little an effect @@ -2522,7 +2522,7 @@ void cClientHandle::SendWindowOpen(const cWindow & a_Window) -void cClientHandle::SendWindowProperty(const cWindow & a_Window, int a_Property, int a_Value) +void cClientHandle::SendWindowProperty(const cWindow & a_Window, short a_Property, short a_Value) { m_Protocol->SendWindowProperty(a_Window, a_Property, a_Value); } |