mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
BACKENDS: Remove excess space from warnings
This commit is contained in:
parent
3399b5662f
commit
23cc4e89f3
@ -90,9 +90,9 @@ int MidiDriver_SEQ::open() {
|
||||
|
||||
if ((device_name == NULL) || (device < 0)) {
|
||||
if (device_name == NULL)
|
||||
warning("Opening /dev/null (no music will be heard) ");
|
||||
warning("Opening /dev/null (no music will be heard)");
|
||||
else
|
||||
warning("Cannot open rawmidi device %s - using /dev/null (no music will be heard) ",
|
||||
warning("Cannot open rawmidi device %s - using /dev/null (no music will be heard)",
|
||||
device_name);
|
||||
device = (::open(("/dev/null"), O_RDWR, 0));
|
||||
if (device < 0)
|
||||
@ -145,7 +145,7 @@ void MidiDriver_SEQ::send(uint32 b) {
|
||||
buf[position++] = 0;
|
||||
break;
|
||||
default:
|
||||
warning("MidiDriver_SEQ::send: unknown : %08x", (int)b);
|
||||
warning("MidiDriver_SEQ::send: unknown: %08x", (int)b);
|
||||
break;
|
||||
}
|
||||
if (write(device, buf, position) == -1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user