aboutsummaryrefslogtreecommitdiff
path: root/include/bb_archive.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bb_archive.h')
-rw-r--r--include/bb_archive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bb_archive.h b/include/bb_archive.h
index 91d5561fc..084ba9470 100644
--- a/include/bb_archive.h
+++ b/include/bb_archive.h
@@ -224,7 +224,7 @@ const llist_t *find_list_entry2(const llist_t *list, const char *filename) FAST_
224 224
225/* A bit of bunzip2 internals are exposed for compressed help support: */ 225/* A bit of bunzip2 internals are exposed for compressed help support: */
226typedef struct bunzip_data bunzip_data; 226typedef struct bunzip_data bunzip_data;
227int start_bunzip(bunzip_data **bdp, int in_fd, const void *inbuf, int len) FAST_FUNC; 227int start_bunzip(void *, bunzip_data **bdp, int in_fd, const void *inbuf, int len) FAST_FUNC;
228/* NB: read_bunzip returns < 0 on error, or the number of *unfilled* bytes 228/* NB: read_bunzip returns < 0 on error, or the number of *unfilled* bytes
229 * in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0: */ 229 * in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0: */
230int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC; 230int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC;