diff options
Diffstat (limited to 'vdr-vdrmanager/helpers.cpp')
-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 += ""; } |