Fix really weird brace mismatchey way of ifdeffing.
authorDavid Robillard <d@drobilla.net>
Wed, 28 Oct 2009 23:53:16 +0000 (23:53 +0000)
committerDavid Robillard <d@drobilla.net>
Wed, 28 Oct 2009 23:53:16 +0000 (23:53 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@5966 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/session_transport.cc

index b5c203189f3bc65f7cd0be615bca5ec4bab01132..aa398f76dd63b9b2a0e3367519ea6510d5c6ea98 100644 (file)
@@ -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;