summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index 65517be4b1..712ca927e5 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -111,7 +111,6 @@ XMLNode&
Processor::state (bool full_state)
{
XMLNode* node = new XMLNode (state_node_name);
- stringstream sstr;
char buf[64];
id().print (buf, sizeof (buf));
@@ -129,6 +128,7 @@ Processor::state (bool full_state)
|| !automation.properties().empty()
|| !_visible_controls.empty()) {
+ stringstream sstr;
for (set<Evoral::Parameter>::iterator x = _visible_controls.begin();
x != _visible_controls.end(); ++x) {
if (x != _visible_controls.begin()) {