Fix broken whitespace. I'd apologize for the compile times if it was my fault :D
[ardour.git] / libs / ardour / source.cc
index 00b642b21be9e4e3b5b704d058fceb6aa2b33722..35e1417fb4c14e92abc5a8af7e7b31199b1653c3 100644 (file)
@@ -149,7 +149,7 @@ Source::set_state (const XMLNode& node, int version)
        }
 
        if (version < 3000) {
-               /* a source with an XML node must necessarily already exist, 
+               /* a source with an XML node must necessarily already exist,
                   and therefore cannot be removable/writable etc. etc.; 2.X
                   sometimes marks sources as removable which shouldn't be.
                */
@@ -254,10 +254,10 @@ Source::mark_for_remove ()
 {
        // This operation is not allowed for sources for destructive tracks or out-of-session files.
 
-       /* XXX need a way to detect _within_session() condition here - move it from FileSource? 
+       /* XXX need a way to detect _within_session() condition here - move it from FileSource?
         */
 
-       if ((_flags & Destructive)) { 
+       if ((_flags & Destructive)) {
                return;
        }
 
@@ -300,7 +300,7 @@ Source::dec_use_count ()
                 abort ();
         }
         assert (oldval > 0);
-#else 
+#else
         g_atomic_int_exchange_and_add (&_use_count, -1);
 #endif
 }