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:
auria
2011-11-08 02:06:21 +00:00
parent 3e260658cc
commit 2dec4bdb98
2 changed files with 9 additions and 2 deletions

View File

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

View File

@@ -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)
{