diff options
Diffstat (limited to 'backends/midi/seq.cpp')
-rw-r--r-- | backends/midi/seq.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/midi/seq.cpp b/backends/midi/seq.cpp index c0098742d0..74a92257bc 100644 --- a/backends/midi/seq.cpp +++ b/backends/midi/seq.cpp @@ -147,7 +147,7 @@ void MidiDriver_SEQ::send(uint32 b) { warning("MidiDriver_SEQ::send: unknown : %08x", (int)b); break; } - (void)write(device, buf, position); + write(device, buf, position); } void MidiDriver_SEQ::sysEx (const byte *msg, uint16 length) { @@ -172,7 +172,7 @@ void MidiDriver_SEQ::sysEx (const byte *msg, uint16 length) { buf[position++] = _device_num; buf[position++] = 0; - (void)write(device, buf, position); + write(device, buf, position); } |