From ed00714b1526ff65c26fa76e6d1a221ea669a20d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 28 Oct 2009 23:53:16 +0000 Subject: [PATCH] Fix really weird brace mismatchey way of ifdeffing. git-svn-id: svn://localhost/ardour2/branches/3.0@5966 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_transport.cc | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc index b5c203189f..aa398f76dd 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -424,10 +424,7 @@ Session::non_realtime_stop (bool abort, int on_entry, bool& finished) } } -#ifndef LEAVE_TRANSPORT_UNADJUSTED - } -#endif - +#ifdef LEAVE_TRANSPORT_UNADJUSTED for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) { if (!(*i)->hidden()) { (*i)->non_realtime_locate (_transport_frame); @@ -438,10 +435,8 @@ Session::non_realtime_stop (bool abort, int on_entry, bool& finished) return; } } - -#ifdef LEAVE_TRANSPORT_UNADJUSTED - } #endif + } have_looped = false;