aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2012-04-15 16:59:48 -0400
committerLuke Dashjr <luke-jr+git@utopios.org>2012-04-17 15:03:05 -0400
commit1b7e5cbcad219e946bb4217741da6933d8302412 (patch)
tree12a594c984646d16bbd20c1c0545e9c36a83689d /src
parent774e9b6dbb2c967ec979351cc4dba82fc0102ee1 (diff)
downloadbitcoin-1b7e5cbcad219e946bb4217741da6933d8302412.tar.xz
CNode's nHeaderStart may be negative, so change its type (PARTIAL)
Diffstat (limited to 'src')
-rw-r--r--src/net.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.h b/src/net.h
index 53e13fd095..24ab43a503 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;