diff options
author | Max Horn | 2007-03-08 17:23:19 +0000 |
---|---|---|
committer | Max Horn | 2007-03-08 17:23:19 +0000 |
commit | 8778f121e2330b5025755ddc57077a5b87fc3693 (patch) | |
tree | 89020da29d9a61ae381d1f4b36608ee7ffd2bfe8 /backends/midi | |
parent | 68df0a697af1afb9af4e6c8737087678917d8ad3 (diff) | |
download | scummvm-rg350-8778f121e2330b5025755ddc57077a5b87fc3693.tar.gz scummvm-rg350-8778f121e2330b5025755ddc57077a5b87fc3693.tar.bz2 scummvm-rg350-8778f121e2330b5025755ddc57077a5b87fc3693.zip |
Replaced uses of fprintf() with warning() or error()
svn-id: r26022
Diffstat (limited to 'backends/midi')
-rw-r--r-- | backends/midi/seq.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/midi/seq.cpp b/backends/midi/seq.cpp index 66ba88a4b1..f570abb685 100644 --- a/backends/midi/seq.cpp +++ b/backends/midi/seq.cpp @@ -134,7 +134,7 @@ void MidiDriver_SEQ::send(uint32 b) { buf[position++] = 0; break; default: - fprintf(stderr, "Unknown : %08x\n", (int)b); + warning("MidiDriver_SEQ::send: unknown : %08x", (int)b); break; } write(device, buf, position); |