From cf8ba1e2fc36cba287e74e06223060cdfd2cc538 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Sun, 19 Jan 2014 03:29:57 +0100 Subject: [PATCH 1/1] Fix signedness This should actually be unsigned. --- src/common/protocols/legacy/legacypeer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.20.1