diff options
| author | andrew morton <drewish@katherinehouse.com> | 2014-01-18 23:38:39 -0800 |
|---|---|---|
| committer | andrew morton <drewish@katherinehouse.com> | 2014-01-18 23:38:39 -0800 |
| commit | b52043e4b9b782f51347ab4b895a957ed80529ac (patch) | |
| tree | e3b702ee0ac50b11b71914a85d5934467b3089b1 /RtMidi.cpp | |
| parent | 403414019715d56e990da67b9268dee0ecf03c50 (diff) | |
Correct some error messages in the Jack code
Diffstat (limited to 'RtMidi.cpp')
| -rw-r--r-- | RtMidi.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3509,7 +3509,7 @@ void MidiInJack :: openPort( unsigned int portNumber, const std::string portName JACK_DEFAULT_MIDI_TYPE, JackPortIsInput, 0 ); if ( data->port == NULL) { - errorString_ = "MidiInJack::openVirtualPort: JACK error creating virtual port"; + errorString_ = "MidiInJack::openPort: JACK error creating port"; RtMidi::error( RtError::DRIVER_ERROR, errorString_ ); } @@ -3664,7 +3664,7 @@ void MidiOutJack :: openPort( unsigned int portNumber, const std::string portNam JACK_DEFAULT_MIDI_TYPE, JackPortIsOutput, 0 ); if ( data->port == NULL ) { - errorString_ = "MidiOutJack::openVirtualPort: JACK error creating virtual port"; + errorString_ = "MidiOutJack::openPort: JACK error creating port"; RtMidi::error( RtError::DRIVER_ERROR, errorString_ ); } |
