summaryrefslogtreecommitdiff
path: root/libs/ardour/plugin.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-01-09 01:24:10 +0100
committerRobin Gareus <robin@gareus.org>2016-01-09 01:24:10 +0100
commit0e6f76373450bc72fbab622bc78f7fad3a3f1a52 (patch)
tree87505416b1309bdf2fd846ca4ff92b6c8de3f6a2 /libs/ardour/plugin.cc
parent5a047fcd153b1df80f693b5a1749069c3a472659 (diff)
and again.
Diffstat (limited to 'libs/ardour/plugin.cc')
-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 ();
}