Fix broken whitespace. I'd apologize for the compile times if it was my fault :D
[ardour.git] / libs / ardour / buffer_manager.cc
index 821360179817956f75d4d6528929da58330afacf..5ebbce26293ce618d3407508176326ade897c342 100644 (file)
@@ -34,10 +34,10 @@ BufferManager::init (uint32_t size)
         thread_buffers = new ThreadBufferFIFO (size+1); // must be one larger than requested
        thread_buffers_list = new ThreadBufferList;
 
-        /* and populate with actual ThreadBuffers 
+        /* and populate with actual ThreadBuffers
          */
 
-        for (uint32_t n = 0; n < size; ++n) {        
+        for (uint32_t n = 0; n < size; ++n) {
                 ThreadBuffers* ts = new ThreadBuffers;
                 thread_buffers->write (&ts, 1);
                thread_buffers_list->push_back (ts);