From: Manuel Nickschas Date: Sun, 19 Jan 2014 02:29:57 +0000 (+0100) Subject: Fix signedness X-Git-Tag: 0.9.3~11 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=7ad97955935d782aef5dd6bfd8cbffcd87fcb304 Fix signedness This should actually be unsigned. --- diff --git a/src/common/protocols/legacy/legacypeer.h b/src/common/protocols/legacy/legacypeer.h index a3aa178b..9d14b890 100644 --- a/src/common/protocols/legacy/legacypeer.h +++ b/src/common/protocols/legacy/legacypeer.h @@ -66,7 +66,7 @@ private: void dispatchPackedFunc(const QVariantList &packedFunc); QDataStream _stream; - qint32 _blockSize; + quint32 _blockSize; bool _useCompression; };