summaryrefslogtreecommitdiff
path: root/debianutils
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-14 12:54:58 +1000
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-14 12:54:58 +1000
commit1a286d510c2125bdab601ce47afd4d27b6ce6f41 (patch)
tree0c17899352c5961b5e402dedd5813794f937e593 /debianutils
parent9df56f96fd9a213189ca94c1fccfc3c42bd9c16a (diff)
parent19ced5c4253bc154aa499a72b6343e01245c92c0 (diff)
downloadbusybox-w32-1a286d510c2125bdab601ce47afd4d27b6ce6f41.tar.gz
busybox-w32-1a286d510c2125bdab601ce47afd4d27b6ce6f41.tar.bz2
busybox-w32-1a286d510c2125bdab601ce47afd4d27b6ce6f41.zip
Merge branch 'origin/master' (early part)
Conflicts: libbb/Kbuild.src
Diffstat (limited to 'debianutils')
-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}