about summary refs log tree commit diff
path: root/src/libflate
diff options
context:
space:
mode:
Diffstat (limited to 'src/libflate')
-rw-r--r--src/libflate/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs
index e5bd81cb816..568210118a8 100644
--- a/src/libflate/lib.rs
+++ b/src/libflate/lib.rs
@@ -130,7 +130,7 @@ mod tests {
                    input.len());
             let cmp = deflate_bytes(input.as_slice()).expect("deflation failed");
             let out = inflate_bytes(cmp.as_slice()).expect("inflation failed");
-            debug!("{} bytes deflated to {} ({:.1f}% size)",
+            debug!("{} bytes deflated to {} ({:.1}% size)",
                    input.len(), cmp.len(),
                    100.0 * ((cmp.len() as f64) / (input.len() as f64)));
             assert_eq!(input.as_slice(), out.as_slice());