More compilation fixes.....
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@10140 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
@@ -67,7 +67,11 @@ Addon::Addon(const XMLNode &xml)
|
||||
xml.get("id", &m_id );
|
||||
xml.get("designer", &designer );
|
||||
xml.get("status", &m_status );
|
||||
xml.get("date", &m_date );
|
||||
|
||||
int64_t tmp;
|
||||
xml.get("date", &tmp );
|
||||
m_date = tmp;
|
||||
|
||||
xml.get("installed", &m_installed );
|
||||
xml.get("installed-revision", &m_installed_revision);
|
||||
xml.get("revision", &m_revision );
|
||||
|
||||
@@ -433,7 +433,10 @@ CURLcode NetworkHttp::loadAddonsList(const XMLNode *xml,
|
||||
if(include)
|
||||
{
|
||||
include->get("file", &addon_list_url);
|
||||
include->get("mtime", &mtime );
|
||||
|
||||
int64_t tmp;
|
||||
include->get("mtime", &tmp);
|
||||
mtime = tmp;
|
||||
}
|
||||
if(addon_list_url.size()==0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user