diff options
| author | Michael Biebl <biebl@debian.org> | 2015-11-24 00:06:32 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2015-11-24 00:06:32 +0100 |
| commit | a6ece1a2aa19a6268335c87d4fdef20123dd04a5 (patch) | |
| tree | 87f1961faacdfafb1c4fee5f2feb6bcb5c06813b /clients/nm-online.c | |
| parent | 81836c2d44802b4cca833d7775dd627e0797a7e2 (diff) | |
Imported Upstream version 1.0.8 upstream/1.0.8
Diffstat (limited to 'clients/nm-online.c')
| -rw-r--r-- | clients/nm-online.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/nm-online.c b/clients/nm-online.c index bb0c9706..5a818bae 100644 --- a/clients/nm-online.c +++ b/clients/nm-online.c @@ -93,7 +93,7 @@ handle_timeout (gpointer data) progress_next_step_i = (elapsed_ms / timeout->progress_step_duration) + 1; progress_next_step_i = MIN (progress_next_step_i, PROGRESS_STEPS); - g_print (_("\rConnecting")); + g_print ("\r%s", _("Connecting")); for (i = 0; i < PROGRESS_STEPS; i++) putchar (i < progress_next_step_i ? '.' : ' '); g_print (" %4lds", (long) (MAX (0, remaining_ms) / 1000)); |