diff options
| author | garyscavone <garyscavone@users.noreply.github.com> | 2014-01-29 13:16:08 -0800 |
|---|---|---|
| committer | garyscavone <garyscavone@users.noreply.github.com> | 2014-01-29 13:16:08 -0800 |
| commit | f62b96feed5fad3e04d8e2ee6bc6ff9b2bc41427 (patch) | |
| tree | e3b702ee0ac50b11b71914a85d5934467b3089b1 | |
| parent | 403414019715d56e990da67b9268dee0ecf03c50 (diff) | |
| parent | b52043e4b9b782f51347ab4b895a957ed80529ac (diff) | |
Merge pull request #5 from drewish/jack-error-messages
Correct some error messages in the Jack code
| -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_ ); } |
