diff options
author | jmarshallnz <jmarshallnz@svn> | 2009-09-29 03:30:18 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2009-09-29 03:30:18 +0000 |
commit | 43643ac594572bfbc1d88dd3a9a5fd070274f447 (patch) | |
tree | b8136aed902bbad657b08351b900441f9ccdd398 /guilib | |
parent | 3f7bf496776da9bd0bc1e2295c82fefd19716c55 (diff) |
changed: type change of the day: long long -> int64_t where reasonable, and removed a few long/int64_t overloads.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23236 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib')
-rw-r--r-- | guilib/XBTF.h | 2 | ||||
-rw-r--r-- | guilib/XBTFReader.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/guilib/XBTF.h b/guilib/XBTF.h index 1a24630c5a..0752dc2325 100644 --- a/guilib/XBTF.h +++ b/guilib/XBTF.h @@ -83,7 +83,7 @@ public: void SetFormat(uint32_t format); std::vector<CXBTFFrame>& GetFrames(); - unsigned long long GetHeaderSize() const; + uint64_t GetHeaderSize() const; private: char m_path[256]; diff --git a/guilib/XBTFReader.cpp b/guilib/XBTFReader.cpp index 6a0f990a6c..151f742508 100644 --- a/guilib/XBTFReader.cpp +++ b/guilib/XBTFReader.cpp @@ -80,7 +80,7 @@ bool CXBTFReader::Open(const CStdString& fileName) { CXBTFFile file; unsigned int u32; - unsigned long long u64; + uint64_t u64; READ_STR(file.GetPath(), 256, m_file); READ_U32(u32, m_file); |