From 334ec95e43a5aa9e01de8c0647448996ae25a8e0 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Fri, 19 Aug 2016 21:40:53 +1000 Subject: Use ID::to_s() in libardour instead of ID::print() --- libs/ardour/processor.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libs/ardour/processor.cc') diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc index 60a23376b6..8a66df0ec9 100644 --- a/libs/ardour/processor.cc +++ b/libs/ardour/processor.cc @@ -113,8 +113,7 @@ Processor::state (bool full_state) XMLNode* node = new XMLNode (state_node_name); char buf[64]; - id().print (buf, sizeof (buf)); - node->add_property("id", buf); + node->add_property("id", id().to_s ()); node->add_property("name", _name); node->add_property("active", active() ? "yes" : "no"); -- cgit v1.2.3