aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-02-21 09:20:56 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-02-21 09:20:56 +0000
commitc485dd7d4b09a5ab99eaa3109d63376326d58355 (patch)
tree918c56f64eb92670bf2809ddf346824c91d3a8ab /archival
parent056d02a70d8407f60ecfd4b120863114832a81af (diff)
downloadbusybox-w32-c485dd7d4b09a5ab99eaa3109d63376326d58355.tar.gz
busybox-w32-c485dd7d4b09a5ab99eaa3109d63376326d58355.tar.bz2
busybox-w32-c485dd7d4b09a5ab99eaa3109d63376326d58355.zip
Sometimes i get carried away with the use of function pointers, im sure
it seemed like a good idea at the time. git-svn-id: svn://busybox.net/trunk/busybox@8531 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival')
-rw-r--r--archival/libunarchive/seek_by_char.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/seek_by_char.c b/archival/libunarchive/seek_by_char.c
index c0315616e..a50d566f5 100644
--- a/archival/libunarchive/seek_by_char.c
+++ b/archival/libunarchive/seek_by_char.c
@@ -27,6 +27,6 @@
27extern void seek_by_char(const archive_handle_t *archive_handle, const unsigned int jump_size) 27extern void seek_by_char(const archive_handle_t *archive_handle, const unsigned int jump_size)
28{ 28{
29 if (jump_size) { 29 if (jump_size) {
30 bb_full_fd_action(archive_handle->src_fd, -1, jump_size, NULL); 30 bb_copyfd_size(archive_handle->src_fd, -1, jump_size);
31 } 31 }
32} 32}