trailing whitespace fixes
[nihav.git] / src / codecs / real / ra144.rs
index e68075810f938dfa915ae217e03b567d099522d7..97577d68fdea00d3dc3baf2e9b2b1039ca521274 100644 (file)
@@ -238,7 +238,7 @@ fn eval_reflection(coeffs: &[i16; LPC_ORDER]) -> Option<u32> {
 }
 
 fn clip_out(sample: i16) -> i16 {
-    sample.max(-16384 >> 2).min(16383 >> 2) 
+    sample.max(-16384 >> 2).min(16383 >> 2)
 }
 
 impl NADecoder for RA144Decoder {