From 9df88a3933ae75ff2ec9bfa951a71fcc0164df74 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Wed, 31 Jul 2013 10:05:00 -0400 Subject: Change mind again... dump Http. Launcher will do this and will use libcurl. Also fix some format string errors. --- node/Address.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'node/Address.hpp') 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); }; -- cgit v1.2.3