diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-12-11 21:34:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-12-11 21:34:04 +0000 |
commit | 9701411d21678b6cf40888820eb66556a9e90b38 (patch) | |
tree | 3597007bcb368474c8dc25a79d69070d5b2b0b9e | |
parent | 49b0f86043beffb9096af83f159a6f7fd151ca30 (diff) | |
download | busybox-w32-9701411d21678b6cf40888820eb66556a9e90b38.tar.gz busybox-w32-9701411d21678b6cf40888820eb66556a9e90b38.tar.bz2 busybox-w32-9701411d21678b6cf40888820eb66556a9e90b38.zip |
squash a warning
-rw-r--r-- | archival/libunarchive/get_header_cpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/get_header_cpio.c b/archival/libunarchive/get_header_cpio.c index 87e971588..96057a7b8 100644 --- a/archival/libunarchive/get_header_cpio.c +++ b/archival/libunarchive/get_header_cpio.c | |||
@@ -88,7 +88,7 @@ extern char get_header_cpio(archive_handle_t *archive_handle) | |||
88 | sscanf(cpio_header, "%6c%8x%8x%8x%8x%8x%8lx%8lx%16c%8x%8x%8x%8c", | 88 | sscanf(cpio_header, "%6c%8x%8x%8x%8x%8x%8lx%8lx%16c%8x%8x%8x%8c", |
89 | dummy, &inode, (unsigned int*)&file_header->mode, | 89 | dummy, &inode, (unsigned int*)&file_header->mode, |
90 | (unsigned int*)&file_header->uid, (unsigned int*)&file_header->gid, | 90 | (unsigned int*)&file_header->uid, (unsigned int*)&file_header->gid, |
91 | &nlink, &file_header->mtime, &file_header->size, | 91 | &nlink, &file_header->mtime, (unsigned long*)&file_header->size, |
92 | dummy, &major, &minor, &namesize, dummy); | 92 | dummy, &major, &minor, &namesize, dummy); |
93 | 93 | ||
94 | file_header->name = (char *) xmalloc(namesize + 1); | 94 | file_header->name = (char *) xmalloc(namesize + 1); |