aboutsummaryrefslogtreecommitdiff
path: root/debianutils/pipe_progress.c
diff options
context:
space:
mode:
Diffstat (limited to 'debianutils/pipe_progress.c')
-rw-r--r--debianutils/pipe_progress.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debianutils/pipe_progress.c b/debianutils/pipe_progress.c
index ced5fb307..6adefac99 100644
--- a/debianutils/pipe_progress.c
+++ b/debianutils/pipe_progress.c
@@ -24,12 +24,12 @@ int pipe_progress_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
24 time_t new_time = time(NULL); 24 time_t new_time = time(NULL);
25 if (new_time != t) { 25 if (new_time != t) {
26 t = new_time; 26 t = new_time;
27 fputc('.', stderr); 27 bb_putchar_stderr('.');
28 } 28 }
29 full_write(STDOUT_FILENO, buf, len); 29 full_write(STDOUT_FILENO, buf, len);
30 } 30 }
31 31
32 fputc('\n', stderr); 32 bb_putchar_stderr('\n');
33 33
34 return 0; 34 return 0;
35} 35}