aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-21 00:32:30 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-21 00:32:30 -0700
commitaf65f52acf4eac5b2187855a63895afe3386c074 (patch)
tree53f72fa2c960c4075c9e976e426ac2c6efef1abf /notmuch.c
parent266c612a5035ab0494c25e40f55aef097e6c99ce (diff)
notmuch setup: Print a few protecting spaces after progress reports.
This is to help keep the report looking clean when a new report is shorter than a previous reports, (say, when crossing the boundary from over one minute remaining to less than one minute remaining). This used to be here, but I must have accidentally dropped it when reformatting the progress report recently.
Diffstat (limited to 'notmuch.c')
-rw-r--r--notmuch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch.c b/notmuch.c
index 6be2881c..a93df823 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -99,7 +99,7 @@ add_files_print_progress (add_files_state_t *state)
state->count, state->total_messages);
print_formatted_seconds ((state->total_messages - state->count) /
rate_overall);
- printf (" remaining).\r");
+ printf (" remaining). \r");
fflush (stdout);
}