diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-09-05 23:36:19 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-09-12 21:30:47 +0200 |
commit | 463a1cab43fda24f89f71fffc876756dc1bc155a (patch) | |
tree | 718d8862d35004ad08cce7986534f51d9776c91f /src/netbase.h | |
parent | 0a4e67afadd738151ae1cd4468b5422a21a0eabf (diff) |
fix signed/unsigned in strprintf and CNetAddr::GetByte()
- I checked every occurance of strprintf() in the code and used %u, where
unsigned vars are used
- the change to GetByte() was made, as ip is an unsigned char
Diffstat (limited to 'src/netbase.h')
-rw-r--r-- | src/netbase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.h b/src/netbase.h index 07ca12cb96..560e2182df 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -66,7 +66,7 @@ class CNetAddr enum Network GetNetwork() const; std::string ToString() const; std::string ToStringIP() const; - int GetByte(int n) const; + unsigned int GetByte(int n) const; uint64 GetHash() const; bool GetInAddr(struct in_addr* pipv4Addr) const; std::vector<unsigned char> GetGroup() const; |