From eedc9606a5234e67c128ca6423fc9ccb56b3fc2c Mon Sep 17 00:00:00 2001 From: Mark Friedenbach Date: Thu, 7 Jul 2016 15:28:07 +0200 Subject: [PATCH] Upstream: remove extraneous warning about variable being used before set (#4) --- src/compressor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compressor.h b/src/compressor.h index 5d1ca0918e..9a4cf78f6c 100644 --- a/src/compressor.h +++ b/src/compressor.h @@ -125,7 +125,7 @@ public: READWRITE(txout.nValue); } } else { - uint8_t type; + uint8_t type = 0; READWRITE(type); if (type == 0) { uint64_t nVal = 0;