diff options
author | jmarshallnz <jmarshallnz@svn> | 2009-09-23 03:50:54 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2009-09-23 03:50:54 +0000 |
commit | b572b147da974ab22064d4b5030fccda08de90cd (patch) | |
tree | b465b93637426c23b9e114739a4fabd450a24cd4 /guilib | |
parent | adab057db495446713b6ff665614ef16a0d7f992 (diff) |
cleanup: __int64 -> int64_t in FileSystem, FileItem, StringUtils, Archive etc.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23101 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib')
-rw-r--r-- | guilib/tinyXML/tinyxml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guilib/tinyXML/tinyxml.cpp b/guilib/tinyXML/tinyxml.cpp index 595a0914e9..20a9e6ca3c 100644 --- a/guilib/tinyXML/tinyxml.cpp +++ b/guilib/tinyXML/tinyxml.cpp @@ -985,7 +985,7 @@ bool TiXmlDocument::LoadFile( const char* _filename, TiXmlEncoding encoding ) // Get the file size, so we can pre-allocate the string. HUGE speed impact. long length = -1; - __int64 filelen = file.GetLength(); + int64_t filelen = file.GetLength(); if (filelen > 0) length = (long)filelen; |