From 9ddc19609e5daa9de51975c43b3a612f31706fa5 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sun, 18 Jan 2009 17:42:19 +0100 Subject: [PATCH] Removed extra % from output The string is not passed through boost::filter; therefore one % is enough. --- src/input/r_flac.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/r_flac.cpp b/src/input/r_flac.cpp index 2b4839afb..697733724 100644 --- a/src/input/r_flac.cpp +++ b/src/input/r_flac.cpp @@ -384,7 +384,7 @@ flac_reader_c::parse_file() { #endif // HAVE_FLAC_DECODER_SKIP } - mxinfo(Y("+-> Pre-parsing FLAC file: 100%%\n")); + mxinfo(Y("+-> Pre-parsing FLAC file: 100%\n")); if ((blocks.size() == 0) || (blocks[0].type != FLAC_BLOCK_TYPE_HEADERS)) mxerror(Y("flac_reader: Could not read all header packets.\n"));