From d747b76cb6b7e15059faa21164d655bc5d8e0b31 Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Thu, 19 Oct 2000 22:31:37 +0000 Subject: [PATCH] Sequencer error message fix. --- dlls/winmm/wineoss/midi.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dlls/winmm/wineoss/midi.c b/dlls/winmm/wineoss/midi.c index 7d512335dda..9362602a56f 100644 --- a/dlls/winmm/wineoss/midi.c +++ b/dlls/winmm/wineoss/midi.c @@ -383,15 +383,15 @@ static int midiOpenSeq(void) if (midiSeqFD == -1) { if (midi_warn) { - MESSAGE("Can't open MIDI device '%s' ! (%s). If your - program needs this (probably not), %s\n", + MESSAGE("Can't open MIDI device '%s' ! (%s). If your " + "program needs this (probably not): %s\n", MIDI_SEQ, strerror(errno), errno == ENOENT ? - ": create it ! (\"man MAKEDEV\" ?)" : + "create it ! (\"man MAKEDEV\" ?)" : errno == ENODEV ? - ": load MIDI sequencer kernel driver !" : + "load MIDI sequencer kernel driver !" : errno == EACCES ? - ": grant access ! (\"man chmod\")" : "" + "grant access ! (\"man chmod\")" : "" ); } midi_warn = 0;