From 5a047fcd153b1df80f693b5a1749069c3a472659 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 9 Jan 2016 01:01:18 +0100 Subject: fix typo in ce7d18bc16 --- libs/ardour/plugin.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs') diff --git a/libs/ardour/plugin.cc b/libs/ardour/plugin.cc index 047e151710..dc9f55f1cf 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.") << PBD::endmsg; + PBD::error << _("Cannot remove plugin factory preset.") << std::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.") << PBD::endmsg; + PBD::error << _("Preset with given name already exists.") << std::endmsg; return Plugin::PresetRecord (); } -- cgit v1.2.3