diff options
author | amet <amet.nospam@gmail.com> | 2011-06-11 19:37:41 +0400 |
---|---|---|
committer | amet <amet.nospam@gmail.com> | 2011-06-11 19:37:41 +0400 |
commit | 1d71b925f789ced69de326365a10a8ed532c8969 (patch) | |
tree | 11f2bd8464004a80ec90fc9256fa4f6bd24926f2 | |
parent | 86c3cce4e217a44606b1d183c2dba41b61013ad5 (diff) |
[fix] duh !!!!
format string with %"PRIu64" rather than "%d"
-rw-r--r-- | xbmc/utils/FileUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/utils/FileUtils.cpp b/xbmc/utils/FileUtils.cpp index de6c675492..4d6b99da4b 100644 --- a/xbmc/utils/FileUtils.cpp +++ b/xbmc/utils/FileUtils.cpp @@ -98,6 +98,6 @@ bool CFileUtils::SubtitleFileSizeAndHash(const CStdString &path, CStdString &str file.Close(); //close file strHash.Format("%"PRIx64"", hash); //format hash - strSize.Format("%d", fileSize); // format size + strSize.Format("%"PRIu64"", fileSize); // format size return true; } |