PulseAudio: fix error message

This commit is contained in:
Mads Kiilerich 2022-11-02 16:03:52 +01:00 committed by Robin Gareus
parent c2db9b4606
commit 4958c0d666
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -842,7 +842,7 @@ PulseAudioBackend::port_factory (std::string const & name, ARDOUR::DataType type
port = new PulseMidiPort (*this, name, flags);
break;
default:
PBD::error << string_compose (_("%1::register_port: Invalid Data Type."), _instance_name) << endmsg;
PBD::error << string_compose (_("%1::port_factory: Invalid Data Type."), _instance_name) << endmsg;
return 0;
}