diff options
Diffstat (limited to 'include/libbb.h')
-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 d390e6840..c0178801f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1592,8 +1592,9 @@ typedef struct bb_progress_t { | |||
1592 | 1592 | ||
1593 | void bb_progress_init(bb_progress_t *p) FAST_FUNC; | 1593 | void bb_progress_init(bb_progress_t *p) FAST_FUNC; |
1594 | void bb_progress_update(bb_progress_t *p, const char *curfile, | 1594 | void bb_progress_update(bb_progress_t *p, const char *curfile, |
1595 | off_t beg_range, off_t transferred, | 1595 | uoff_t beg_range, |
1596 | off_t totalsize) FAST_FUNC; | 1596 | uoff_t transferred, |
1597 | uoff_t totalsize) FAST_FUNC; | ||
1597 | 1598 | ||
1598 | extern const char *applet_name; | 1599 | extern const char *applet_name; |
1599 | 1600 | ||