fix bad return value (no side effects - the return value was never checked) - noticed during test build

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3023 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-02-06 16:45:10 +00:00
parent 90ccafb20c
commit 674f80e739
2 changed files with 3 additions and 1 deletions

View file

@ -994,4 +994,6 @@ AudioSource::check_for_analysis_data_on_disk ()
// XXX add other tests here as appropriate
set_been_analysed (ok);
return ok;
}