diff options
author | Slávek Banko <[email protected]> | 2018-08-19 16:50:54 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-08-19 16:51:11 +0200 |
commit | c4353401bdaa68866719eda3a1c2c3335e9d404f (patch) | |
tree | 3175f2179b5eecc35cfeae2a1add5fda9fa08d5b | |
parent | 9d08e677137d21443922c70edcfc363244b068f6 (diff) | |
download | tdemultimedia-c4353401bdaa68866719eda3a1c2c3335e9d404f.tar.gz tdemultimedia-c4353401bdaa68866719eda3a1c2c3335e9d404f.zip |
Fix FTBFS with stricter C++11
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 70a7fcb38d8a2d7a1b9a974c28ed1303743a3221)
-rw-r--r-- | arts/midi/rawmidiport_impl.cc | 2 | ||||
-rw-r--r-- | mpeglib/lib/mpegplay/mpegVideoStream.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arts/midi/rawmidiport_impl.cc b/arts/midi/rawmidiport_impl.cc index 3d82d8be..f8311bd6 100644 --- a/arts/midi/rawmidiport_impl.cc +++ b/arts/midi/rawmidiport_impl.cc @@ -289,7 +289,7 @@ public: } void processCommand(const MidiCommand& command) { - char message[3] = { command.status, command.data1, command.data2 }; + unsigned char message[3] = { command.status, command.data1, command.data2 }; int len = midiMsgLen(command.status); if(midiMsgLen(command.status)) diff --git a/mpeglib/lib/mpegplay/mpegVideoStream.cpp b/mpeglib/lib/mpegplay/mpegVideoStream.cpp index 5e16b116..a1000695 100644 --- a/mpeglib/lib/mpegplay/mpegVideoStream.cpp +++ b/mpeglib/lib/mpegplay/mpegVideoStream.cpp @@ -81,7 +81,7 @@ int MpegVideoStream::isStartCode(unsigned int data) { case SEQUENCE_ERROR_CODE: case SYSTEM_HEADER_START_CODE: case ISO_11172_END_CODE: - case EOF: + case (unsigned)EOF: return true; } if ((SLICE_MIN_START_CODE < data) && (data < SLICE_MAX_START_CODE)) { |