e16d943
From: Moritz Bunkus <moritz@bunkus.org>
e16d943
Date: Sun, 18 Jan 2009 18:59:55 +0000 (+0100)
e16d943
Subject: Removed extra % from output
e16d943
X-Git-Url: https://www.bunkus.org/cgi-bin/gitweb.cgi?p=mkvtoolnix.git;a=commitdiff_plain;h=cdcb7a3f03285cf815db95a5b715a98b2718da82
e16d943
e16d943
Removed extra % from output
e16d943
e16d943
The strings are not passed through boost::filter; therefore one % is enough.
e16d943
---
e16d943
e16d943
diff --git a/src/extract/mkvextract.cpp b/src/extract/mkvextract.cpp
e16d943
index 03f6aef..6b2eac0 100644
e16d943
--- a/src/extract/mkvextract.cpp
e16d943
+++ b/src/extract/mkvextract.cpp
e16d943
@@ -356,7 +356,7 @@ main(int argc,
e16d943
     extract_tracks(input_file.c_str(), tracks);
e16d943
 
e16d943
     if (0 == verbose)
e16d943
-      mxinfo(Y("Progress: 100%%\n"));
e16d943
+      mxinfo(Y("Progress: 100%\n"));
e16d943
 
e16d943
   } else if (MODE_TAGS == mode)
e16d943
     extract_tags(input_file.c_str(), s_parse_fully);
e16d943
diff --git a/src/extract/timecodes_v2.cpp b/src/extract/timecodes_v2.cpp
e16d943
index 175fa32..782f809 100644
e16d943
--- a/src/extract/timecodes_v2.cpp
e16d943
+++ b/src/extract/timecodes_v2.cpp
e16d943
@@ -355,7 +355,7 @@ extract_timecodes(const string &file_name,
e16d943
     close_timecode_files();
e16d943
 
e16d943
     if (0 == verbose)
e16d943
-      mxinfo(Y("Progress: 100%%\n"));
e16d943
+      mxinfo(Y("Progress: 100%\n"));
e16d943
 
e16d943
   } catch (...) {
e16d943
     show_error(Y("Caught exception"));