Change mind again... dump Http. Launcher will do this and will use libcurl. Also fix some format string errors.

This commit is contained in:
Adam Ierymenko 2013-07-31 10:05:00 -04:00
parent 3daea24d50
commit 9df88a3933
16 changed files with 7 additions and 6927 deletions

View file

@ -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);
};