mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fix compiling on 32bit linux
--HG-- branch : develop
This commit is contained in:
parent
c58e10f173
commit
11ca61be54
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ namespace NLGUI
|
||||||
|
|
||||||
if ( (code < 200 || code >= 300) )
|
if ( (code < 200 || code >= 300) )
|
||||||
{
|
{
|
||||||
browseError(string("Connection failed (curl code " + toString((sint32)res) + "), http code " + toString(code) + ") : " + _CurlWWW->Url).c_str());
|
browseError(string("Connection failed (curl code " + toString((sint32)res) + "), http code " + toString((sint32)code) + ") : " + _CurlWWW->Url).c_str());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue