From 674f80e7393f65ee8adeb680aa3d43013f98437e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 6 Feb 2008 16:45:10 +0000 Subject: [PATCH] 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 --- libs/ardour/audiosource.cc | 2 ++ svn_revision.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/ardour/audiosource.cc b/libs/ardour/audiosource.cc index 51b4763e24..cc1b7f4a05 100644 --- a/libs/ardour/audiosource.cc +++ b/libs/ardour/audiosource.cc @@ -994,4 +994,6 @@ AudioSource::check_for_analysis_data_on_disk () // XXX add other tests here as appropriate set_been_analysed (ok); + + return ok; } diff --git a/svn_revision.h b/svn_revision.h index a2bc4eb888..86fb436f41 100644 --- a/svn_revision.h +++ b/svn_revision.h @@ -1,4 +1,4 @@ #ifndef __ardour_svn_revision_h__ #define __ardour_svn_revision_h__ -static const char* ardour_svn_revision = "3021"; +static const char* ardour_svn_revision = "3022"; #endif