diff options
author | Matthew Hoops | 2012-11-24 18:19:05 -0500 |
---|---|---|
committer | Matthew Hoops | 2012-11-24 18:19:05 -0500 |
commit | 23cc4e89f3acbf489a38f0d81421f6af1dcbf08a (patch) | |
tree | 7369eb888271e54030df56940defde2b0755e4ab /backends/midi | |
parent | 3399b5662f4e9de6dcd7e04ecd19bd87c57d2beb (diff) | |
download | scummvm-rg350-23cc4e89f3acbf489a38f0d81421f6af1dcbf08a.tar.gz scummvm-rg350-23cc4e89f3acbf489a38f0d81421f6af1dcbf08a.tar.bz2 scummvm-rg350-23cc4e89f3acbf489a38f0d81421f6af1dcbf08a.zip |
BACKENDS: Remove excess space from warnings
Diffstat (limited to 'backends/midi')
-rw-r--r-- | backends/midi/seq.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/midi/seq.cpp b/backends/midi/seq.cpp index 4efad9ceae..d48b80c40b 100644 --- a/backends/midi/seq.cpp +++ b/backends/midi/seq.cpp @@ -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) |