summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/plugin.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/plugin.cc b/libs/ardour/plugin.cc
index dc9f55f1cf..31e9e2eb4b 100644
--- a/libs/ardour/plugin.cc
+++ b/libs/ardour/plugin.cc
@@ -122,7 +122,7 @@ Plugin::remove_preset (string name)
{
Plugin::PresetRecord const * p = preset_by_label (name);
if (!p->user) {
- PBD::error << _("Cannot remove plugin factory preset.") << std::endmsg;
+ PBD::error << _("Cannot remove plugin factory preset.") << endmsg;
return;
}
@@ -140,7 +140,7 @@ Plugin::PresetRecord
Plugin::save_preset (string name)
{
if (preset_by_label (name)) {
- PBD::error << _("Preset with given name already exists.") << std::endmsg;
+ PBD::error << _("Preset with given name already exists.") << endmsg;
return Plugin::PresetRecord ();
}