aboutsummaryrefslogtreecommitdiff
path: root/lib/service/servicedvb.cpp
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2011-01-03 15:52:51 +0100
committerAndreas Oberritter <obi@opendreambox.org>2011-01-19 04:24:23 +0100
commit7b76c1241ca53ff1dec451d0732719d3882c56a6 (patch)
tree0aa2bc4515250d6e91d6a6f82bd8a9afd4cf182b /lib/service/servicedvb.cpp
parent3c367808a0d999678d91c5e3bd34d83e2ac22095 (diff)
downloadenigma2-7b76c1241ca53ff1dec451d0732719d3882c56a6.tar.gz
enigma2-7b76c1241ca53ff1dec451d0732719d3882c56a6.zip
use %zd for ssize_t and %zu for size_t
Diffstat (limited to 'lib/service/servicedvb.cpp')
-rw-r--r--lib/service/servicedvb.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp
index 6a464aff..2f07ce44 100644
--- a/lib/service/servicedvb.cpp
+++ b/lib/service/servicedvb.cpp
@@ -2403,7 +2403,7 @@ void eDVBServicePlay::updateDecoder(bool sendSeekableStateChanged)
eDebug("getting program info failed.");
else
{
- eDebugNoNewLine("have %d video stream(s)", program.videoStreams.size());
+ eDebugNoNewLine("have %zd video stream(s)", program.videoStreams.size());
if (!program.videoStreams.empty())
{
eDebugNoNewLine(" (");
@@ -2422,7 +2422,7 @@ void eDVBServicePlay::updateDecoder(bool sendSeekableStateChanged)
}
eDebugNoNewLine(")");
}
- eDebugNoNewLine(", and %d audio stream(s)", program.audioStreams.size());
+ eDebugNoNewLine(", and %zd audio stream(s)", program.audioStreams.size());
if (!program.audioStreams.empty())
{
eDebugNoNewLine(" (");
@@ -2599,7 +2599,7 @@ void eDVBServicePlay::loadCuesheet()
m_cue_entries.insert(cueEntry(where, what));
}
fclose(f);
- eDebug("%d entries", m_cue_entries.size());
+ eDebug("%zd entries", m_cue_entries.size());
} else
eDebug("cutfile not found!");