globally remove all trailing whitespace from .cpp and .hpp files missed by previous...
[ardour.git] / libs / appleutility / CABufferList.cpp
index 81298f918abc5d528abbe8bb156ed7a0f0baf87a..47fe524f6fe72a32e4522b1c037ce29ec8064478 100644 (file)
@@ -123,7 +123,7 @@ void                CABufferList::DeallocateBuffers()
                delete[] mBufferMemory;
                mBufferMemory = NULL;
        }
-    
+
 }
 
 extern "C" void CAShowAudioBufferList(const AudioBufferList *abl, int framesToPrint, int wordSize)
@@ -131,7 +131,7 @@ extern "C" void CAShowAudioBufferList(const AudioBufferList *abl, int framesToPr
        printf("AudioBufferList @ %p:\n", abl);
        const AudioBuffer *buf = abl->mBuffers;
        for (UInt32 i = 0; i < abl->mNumberBuffers; ++i, ++buf) {
-               printf("  [%2ld]: %2ldch, %5ld bytes @ %8p", 
+               printf("  [%2ld]: %2ldch, %5ld bytes @ %8p",
                        i, buf->mNumberChannels, buf->mDataByteSize, buf->mData);
                if (framesToPrint) {
                        printf(":");