summaryrefslogtreecommitdiff
path: root/node/Address.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/Address.hpp')
-rw-r--r--node/Address.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Address.hpp b/node/Address.hpp
index 8573a268..fce4f20c 100644
--- a/node/Address.hpp
+++ b/node/Address.hpp
@@ -198,7 +198,7 @@ public:
inline std::string toString() const
{
char buf[16];
- sprintf(buf,"%.10llx",_a);
+ sprintf(buf,"%.10llx",(unsigned long long)_a);
return std::string(buf);
};