aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMax Horn2007-03-08 17:23:19 +0000
committerMax Horn2007-03-08 17:23:19 +0000
commit8778f121e2330b5025755ddc57077a5b87fc3693 (patch)
tree89020da29d9a61ae381d1f4b36608ee7ffd2bfe8 /backends
parent68df0a697af1afb9af4e6c8737087678917d8ad3 (diff)
downloadscummvm-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')
-rw-r--r--backends/midi/seq.cpp2
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);