and again.
authorRobin Gareus <robin@gareus.org>
Sat, 9 Jan 2016 00:24:10 +0000 (01:24 +0100)
committerRobin Gareus <robin@gareus.org>
Sat, 9 Jan 2016 00:24:10 +0000 (01:24 +0100)
libs/ardour/plugin.cc

index dc9f55f1cfdf944bd635b1aa5dc776a1786f6977..31e9e2eb4b5dc2d09977454a343d1033e51f2a3e 100644 (file)
@@ -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 ();
        }