From 7ad97955935d782aef5dd6bfd8cbffcd87fcb304 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Sun, 19 Jan 2014 03:29:57 +0100 Subject: [PATCH] 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 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; }; -- 2.20.1