From: Jeff Garzik Date: Sun, 15 Apr 2012 20:59:48 +0000 (-0400) Subject: CNode's nHeaderStart may be negative, so change its type (PARTIAL) X-Git-Tag: v0.4.0-unstable~129^2~1^2^2~2^2^2~24 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=1b7e5cbcad219e946bb4217741da6933d8302412 CNode's nHeaderStart may be negative, so change its type (PARTIAL) --- diff --git a/src/net.h b/src/net.h index 53e13fd..24ab43a 100644 --- a/src/net.h +++ b/src/net.h @@ -111,7 +111,7 @@ public: int64 nLastRecv; int64 nLastSendEmpty; int64 nTimeConnected; - unsigned int nHeaderStart; + signed int nHeaderStart; unsigned int nMessageStart; CAddress addr; int nVersion;