diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2011-01-03 15:52:51 +0100 |
|---|---|---|
| committer | Andreas Oberritter <obi@opendreambox.org> | 2011-01-19 04:24:23 +0100 |
| commit | 7b76c1241ca53ff1dec451d0732719d3882c56a6 (patch) | |
| tree | 0aa2bc4515250d6e91d6a6f82bd8a9afd4cf182b /lib/service/servicedvbrecord.cpp | |
| parent | 3c367808a0d999678d91c5e3bd34d83e2ac22095 (diff) | |
| download | enigma2-7b76c1241ca53ff1dec451d0732719d3882c56a6.tar.gz enigma2-7b76c1241ca53ff1dec451d0732719d3882c56a6.zip | |
use %zd for ssize_t and %zu for size_t
Diffstat (limited to 'lib/service/servicedvbrecord.cpp')
| -rw-r--r-- | lib/service/servicedvbrecord.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/service/servicedvbrecord.cpp b/lib/service/servicedvbrecord.cpp index 419c26ba..08cd2471 100644 --- a/lib/service/servicedvbrecord.cpp +++ b/lib/service/servicedvbrecord.cpp @@ -313,7 +313,7 @@ int eDVBServiceRecord::doRecord() int timing_pid = -1, timing_pid_type = -1; - eDebugNoNewLine("RECORD: have %d video stream(s)", program.videoStreams.size()); + eDebugNoNewLine("RECORD: have %zd video stream(s)", program.videoStreams.size()); if (!program.videoStreams.empty()) { eDebugNoNewLine(" ("); @@ -335,7 +335,7 @@ int eDVBServiceRecord::doRecord() } eDebugNoNewLine(")"); } - eDebugNoNewLine(", and %d audio stream(s)", program.audioStreams.size()); + eDebugNoNewLine(", and %zd audio stream(s)", program.audioStreams.size()); if (!program.audioStreams.empty()) { eDebugNoNewLine(" ("); |
