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)
time_t new_time = time(NULL);
if (new_time != t) {
t = new_time;
- fputc('.', stderr);
+ bb_putchar_stderr('.');
}
full_write(STDOUT_FILENO, buf, len);
}
- fputc('\n', stderr);
+ bb_putchar_stderr('\n');
return 0;
}