X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=finddup.git;a=blobdiff_plain;f=finddup.c;h=acbbddc58e8a2f487d05a7c9ca3fe0253993cec8;hp=6b141428ecd77e25bd37a258456d0eb12ed666c7;hb=1edf3fa264c9455b7f6f8c2b55714bfa4558dbc1;hpb=87d05f158cb6c552c1de528628bbf10c65e0edb6 diff --git a/finddup.c b/finddup.c index 6b14142..acbbddc 100644 --- a/finddup.c +++ b/finddup.c @@ -403,8 +403,8 @@ void print_progress(struct progress_state *state) { if(state->bar_width <= 0 || position != state->last_position) { if(!ioctl (STDERR_FILENO, TIOCGWINSZ, (char *) &win)) { /* Something weird is going on if the previous test is wrong */ - if(win.ws_col >= PROGRESS_BUFFER_SIZE) { - state->bar_width = PROGRESS_BUFFER_SIZE - 8; + if(win.ws_col >= PROGRESS_BUFFER_SIZE - 3) { + state->bar_width = PROGRESS_BUFFER_SIZE - 10; } else { state->bar_width = win.ws_col - 7; } @@ -417,7 +417,9 @@ void print_progress(struct progress_state *state) { for(; k < state->bar_width; k++) { *(s++) = '-'; } - sprintf(s, " [%3d%%]\r", + + /* We need four % because of the fprintf that follows */ + sprintf(s, " [%3d%%%%]\r", (100 * state->value) / (state->nb_values - 1)); fprintf(stderr, buffer);