]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Fix fmt::format error
authorJoel Rosdahl <joel@rosdahl.net>
Thu, 30 Jul 2020 18:03:41 +0000 (20:03 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Thu, 30 Jul 2020 19:04:01 +0000 (21:04 +0200)
Introduced in ed21c1feb83f62b9a2d04e959e9a3abd4eac2879.

src/compress.cpp

index 78354c3bf4171055219de84241200e8d74e28b76..7e602d7b8eb5e68e46ab3931e7f3b1922c8f8279 100644 (file)
@@ -199,7 +199,7 @@ compress_stats(const Config& config,
              compr_size_str,
              100.0 - savings);
   fmt::print("  - Original size:     {:8s}\n", compr_orig_size_str);
-  fmt::print("  - Compression ratio: %5.3f x  ({:.1f}% space savings)\n",
+  fmt::print("  - Compression ratio: {:5.3f} x  ({:.1f}% space savings)\n",
              ratio,
              savings);
   fmt::print("Incompressible data:   {:8s}\n", incompr_size_str);