summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgaryscavone <garyscavone@users.noreply.github.com>2014-01-29 13:16:08 -0800
committergaryscavone <garyscavone@users.noreply.github.com>2014-01-29 13:16:08 -0800
commitf62b96feed5fad3e04d8e2ee6bc6ff9b2bc41427 (patch)
treee3b702ee0ac50b11b71914a85d5934467b3089b1
parent403414019715d56e990da67b9268dee0ecf03c50 (diff)
parentb52043e4b9b782f51347ab4b895a957ed80529ac (diff)
Merge pull request #5 from drewish/jack-error-messages
Correct some error messages in the Jack code
-rw-r--r--RtMidi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/RtMidi.cpp b/RtMidi.cpp
index 33738a9..65375d0 100644
--- a/RtMidi.cpp
+++ b/RtMidi.cpp
@@ -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_ );
}