From: Manuel Nickschas Date: Sun, 19 Jan 2014 02:29:57 +0000 (+0100) Subject: Fix signedness X-Git-Tag: 0.10-beta1~45 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=cf8ba1e2fc36cba287e74e06223060cdfd2cc538;hp=85c06c037fa8cc34ceb7c4b8b73ef692c1ce6166 Fix signedness This should actually be unsigned. --- diff --git a/src/common/protocols/legacy/legacypeer.h b/src/common/protocols/legacy/legacypeer.h index 718cc45b..8d91c6b6 100644 --- a/src/common/protocols/legacy/legacypeer.h +++ b/src/common/protocols/legacy/legacypeer.h @@ -84,7 +84,7 @@ private: void dispatchPackedFunc(const QVariantList &packedFunc); QDataStream _stream; - qint32 _blockSize; + quint32 _blockSize; bool _useCompression; };