diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-10-12 22:16:00 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-10-12 22:16:00 +0000 |
commit | ba074c368954f2ddb5f6a360ffe6475fd17960f3 (patch) | |
tree | 323038840041b6e05c185945a8e448da2e5e2b8e /tools | |
parent | e6543e71ef0285005fa3dfc3ab2a06a9f16b70af (diff) |
tools/gst-launch.c: Change the printing of the 'buffering...' output to avoid putting a \r in a translateable string ...
Original commit message from CVS:
* tools/gst-launch.c:
Change the printing of the 'buffering...' output to avoid putting
a \r in a translateable string (flagged by the TP).
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gst-launch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gst-launch.c b/tools/gst-launch.c index 72e13a665..7fe0ee9d2 100644 --- a/tools/gst-launch.c +++ b/tools/gst-launch.c @@ -518,7 +518,7 @@ event_loop (GstElement * pipeline, gboolean blocking, GstState target_state) gint percent; gst_message_parse_buffering (message, &percent); - fprintf (stderr, _("buffering... %d \r"), percent); + fprintf (stderr, "%s %d%% \r", _("buffering..."), percent); /* no state management needed for live pipelines */ if (is_live) |