From: Lennart Poettering Date: Mon, 7 Sep 2009 21:34:31 +0000 (+0200) Subject: i18n: move \r out of translatable string X-Git-Tag: submit/2.0-panda/20130828.192557~1362 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b2606cf641f01f688dcb05abcfef3ba003e74efb;p=profile%2Fivi%2Fpulseaudio-panda.git i18n: move \r out of translatable string https://bugzilla.redhat.com/show_bug.cgi?id=521552 --- diff --git a/src/utils/pacat.c b/src/utils/pacat.c index 9264a06..0a369bc 100644 --- a/src/utils/pacat.c +++ b/src/utils/pacat.c @@ -574,9 +574,10 @@ static void stream_update_timing_callback(pa_stream *s, int success, void *userd return; } - pa_log(_("Time: %0.3f sec; Latency: %0.0f usec. \r"), + fprintf(stderr, _("Time: %0.3f sec; Latency: %0.0f usec."), (float) usec / 1000000, (float) l * (negative?-1.0f:1.0f)); + fprintf(stderr, " \r"); } /* Someone requested that the latency is shown */