diff options
| author | Lennart Poettering <lennart@poettering.net> | 2009-09-07 23:34:31 +0200 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2009-09-07 23:34:31 +0200 | 
| commit | b2606cf641f01f688dcb05abcfef3ba003e74efb (patch) | |
| tree | ae8d5ebc43ec2bab5edc9c8f654b0682b2167cfd | |
| parent | 508c462841fd087528649ed1ca3646363387bb5d (diff) | |
i18n: move \r out of translatable string
https://bugzilla.redhat.com/show_bug.cgi?id=521552
| -rw-r--r-- | src/utils/pacat.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/utils/pacat.c b/src/utils/pacat.c index 9264a062..0a369bc2 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 */ | 
