Fix for compiler warnings and errors.

git-svn-id: svn://localhost/ardour2/trunk@1547 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Taybin Rutkin
2007-03-02 02:30:07 +00:00
parent f942909c77
commit 918109c555
2 changed files with 3 additions and 3 deletions

View File

@@ -225,9 +225,9 @@ AudioEngine::jack_sync_callback (jack_transport_state_t state, jack_position_t*
{
if (_jack && session) {
return session->jack_sync_callback (state, pos);
} else {
return true;
}
return true;
}
int

View File

@@ -25,7 +25,7 @@ class RCUManager
protected:
union {
boost::shared_ptr<T>* m_rcu_value;
volatile gpointer gptr;
mutable volatile gpointer gptr;
} x;
};