diff options
author | lado <herrlado@gmail.com> | 2013-09-30 14:22:55 +0200 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2013-09-30 14:22:55 +0200 |
commit | 41f6424d701203b089fe5e638d693076420e598f (patch) | |
tree | a25a1ca58c6506dcba419fa0ac98403d83a918ab /vdr-vdrmanager | |
parent | b8c9e3c30511bb497b31d197d15cf49519854661 (diff) | |
download | vdr-manager-41f6424d701203b089fe5e638d693076420e598f.tar.gz vdr-manager-41f6424d701203b089fe5e638d693076420e598f.tar.bz2 |
Bug #1532
Diffstat (limited to 'vdr-vdrmanager')
-rw-r--r-- | vdr-vdrmanager/helpers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vdr-vdrmanager/helpers.cpp b/vdr-vdrmanager/helpers.cpp index df51221..da39839 100644 --- a/vdr-vdrmanager/helpers.cpp +++ b/vdr-vdrmanager/helpers.cpp @@ -693,7 +693,7 @@ string cHelpers::ToText(cRecording * recording) { struct stat st; if (stat(recording->FileName(), &st) == 0) { result += MapSpecialChars( - cString::sprintf("%lu:%lu.rec", st.st_dev, st.st_ino)); + cString::sprintf("%lu:%llu.rec", st.st_dev, st.st_ino)); } else { result += ""; } |