diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-07-31 10:05:00 -0400 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-07-31 10:05:00 -0400 |
| commit | 9df88a3933ae75ff2ec9bfa951a71fcc0164df74 (patch) | |
| tree | 8f7584a67689685ca4c738aae1c0f8b330130683 /node/Address.hpp | |
| parent | 3daea24d504af214bfac1bae41727e93ed8a6774 (diff) | |
| download | infinitytier-9df88a3933ae75ff2ec9bfa951a71fcc0164df74.tar.gz infinitytier-9df88a3933ae75ff2ec9bfa951a71fcc0164df74.zip | |
Change mind again... dump Http. Launcher will do this and will use libcurl. Also fix some format string errors.
Diffstat (limited to 'node/Address.hpp')
| -rw-r--r-- | node/Address.hpp | 2 |
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); }; |
