Replaced uses of fprintf() with warning() or error()

svn-id: r26022
This commit is contained in:
Max Horn 2007-03-08 17:23:19 +00:00
parent 68df0a697a
commit 8778f121e2
3 changed files with 23 additions and 24 deletions

View file

@ -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);