From 0e6f76373450bc72fbab622bc78f7fad3a3f1a52 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 9 Jan 2016 01:24:10 +0100 Subject: [PATCH] and again. --- libs/ardour/plugin.cc | 4 ++-- 1 file 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 (); }