summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Loftis <ben@glw.com>2009-12-22 20:35:53 +0000
committerBen Loftis <ben@glw.com>2009-12-22 20:35:53 +0000
commit95566ba56581709e55e38c99b8ba3e0ec6a43456 (patch)
treea63e5f881f59b299cb7e0e449322c974d66682d7
parent360b97a763c43c26c6423cf2e3df438927ecb8ae (diff)
fix typo in AU cache loading
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@6390 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/ardour/audio_unit.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/audio_unit.cc b/libs/ardour/audio_unit.cc
index 1a14053d5f..e155a2b081 100644
--- a/libs/ardour/audio_unit.cc
+++ b/libs/ardour/audio_unit.cc
@@ -2207,7 +2207,7 @@ AUPluginInfo::load_cached_info ()
if (((iprop = gchild->property (X_("in"))) != 0) &&
((oprop = gchild->property (X_("out"))) != 0)) {
in = atoi (iprop->value());
- out = atoi (iprop->value());
+ out = atoi (oprop->value());
cinfo.io_configs.push_back (pair<int,int> (in, out));
}