diff options
author | Denys Vlasenko | 2011-02-10 14:25:51 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-02-10 14:25:51 +0100 |
commit | 805aa9fec923109e90c87eda2f116ee2fa5fe962 (patch) | |
tree | 1896eafafe3acd5febd244f69c12932f1bfb63ec /include | |
parent | 9213a55bf0cc833d024975865a96a762b7a90b62 (diff) | |
download | busybox-805aa9fec923109e90c87eda2f116ee2fa5fe962.zip busybox-805aa9fec923109e90c87eda2f116ee2fa5fe962.tar.gz |
progress bar: better overflow protection; more precise bar
function old new delta
bb_progress_update 639 749 +110
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index d390e68..c017880 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -1592,8 +1592,9 @@ typedef struct bb_progress_t { void bb_progress_init(bb_progress_t *p) FAST_FUNC; void bb_progress_update(bb_progress_t *p, const char *curfile, - off_t beg_range, off_t transferred, - off_t totalsize) FAST_FUNC; + uoff_t beg_range, + uoff_t transferred, + uoff_t totalsize) FAST_FUNC; extern const char *applet_name; |