diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2011-01-26 01:29:01 +0100 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2011-01-26 01:29:01 +0100 |
commit | 00a2ae09ccd803c1a22251a5c895d5779352d617 (patch) | |
tree | f3feb59fbe1dfde439360341d14b4341bbf0cb16 /preload.cpp | |
parent | cdc9262868dcd658ca1105f284d390a15fd33729 (diff) | |
download | vdr-plugin-live-00a2ae09ccd803c1a22251a5c895d5779352d617.tar.gz vdr-plugin-live-00a2ae09ccd803c1a22251a5c895d5779352d617.tar.bz2 |
Yet an other patch from Rolf Ahrenberg:
(live-git-20110126-remove-double-escape-and-compilation-warnings.patch.gz)
Fixes a double HTML entities encoding error, omits some compiler
warnings and updates the finish translations.
Diffstat (limited to 'preload.cpp')
-rw-r--r-- | preload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preload.cpp b/preload.cpp index 83b282e..10e066e 100644 --- a/preload.cpp +++ b/preload.cpp @@ -111,6 +111,6 @@ namespace vdrlive { } i++; } - isyslog("LIVE: initial file cache has %d entries and needs %d bytes of data!", fc.count(), fc.weight()); + isyslog("LIVE: initial file cache has %zu entries and needs %zu bytes of data!", fc.count(), fc.weight()); } } |