From d177e0f64a03fdafd3401456639834c76dfbf32b Mon Sep 17 00:00:00 2001 From: ehriche Date: Wed, 6 May 2015 00:46:02 +0200 Subject: fixed issue with format string in PCKPacker::flush --- tools/pck/pck_packer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/pck') diff --git a/tools/pck/pck_packer.cpp b/tools/pck/pck_packer.cpp index 09611b3a93..d398fefb5f 100644 --- a/tools/pck/pck_packer.cpp +++ b/tools/pck/pck_packer.cpp @@ -136,7 +136,7 @@ Error PCKPacker::flush(bool p_verbose) { count += 1; if (p_verbose) { if (count % 100 == 0) { - printf("%i/%i (%.2f\%)\r", count, files.size(), float(count) / files.size() * 100); + printf("%i/%i (%.2f)\r", count, files.size(), float(count) / files.size() * 100); fflush(stdout); }; }; -- cgit v1.2.3