summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Loftis <ben@glw.com>2010-01-15 15:42:06 +0000
committerBen Loftis <ben@glw.com>2010-01-15 15:42:06 +0000
commit79910087b918c7df65f844063963b18f1d5eead6 (patch)
tree15d0a4128fa15808bca7663e82529f048684d606
parent15bb3b577ec9a8cb50758c4b017718e342a2439c (diff)
fix missing paren
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@6495 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 eddf49bc28..49f02d9bca 100644
--- a/libs/ardour/audio_unit.cc
+++ b/libs/ardour/audio_unit.cc
@@ -2177,7 +2177,7 @@ AUPluginInfo::load_cached_info ()
//initial version has incorrectly stored i/o info, and/or garbage chars.
const XMLProperty* version = root->property(X_("version"));
- if (! (version != NULL) && (version->value() == X_(AU_CACHE_VERSION)))) {
+ if (! ((version != NULL) && (version->value() == X_(AU_CACHE_VERSION)))) {
error << "au_cache is not correct version. AU plugins will be re-scanned" << endmsg;
return -1;
}