From 70a7fcb38d8a2d7a1b9a974c28ed1303743a3221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 19 Aug 2018 16:50:54 +0200 Subject: Fix FTBFS with stricter C++11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- arts/midi/rawmidiport_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arts') 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)) -- cgit v1.2.1