Fix broken whitespace. I'd apologize for the compile times if it was my fault :D
[ardour.git] / libs / ardour / export_format_base.cc
index fa6f1198e94167437e344d04736de2138b245002..92400b5e474f68203fe4f0c5f9b68ed23f3b3186 100644 (file)
@@ -204,7 +204,7 @@ ExportFormatBase::nearest_sample_rate (framecnt_t sample_rate)
        int diff = 0;
        int smallest_diff = INT_MAX;
        SampleRate best_match = SR_None;
-       
+
        #define DO_SR_COMPARISON(rate) \
        diff = std::abs((rate) - sample_rate); \
        if(diff < smallest_diff) { \
@@ -219,7 +219,7 @@ ExportFormatBase::nearest_sample_rate (framecnt_t sample_rate)
        DO_SR_COMPARISON(SR_88_2);
        DO_SR_COMPARISON(SR_96);
        DO_SR_COMPARISON(SR_192);
-       
+
        return best_match;
        #undef DO_SR_COMPARISON
 }