diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-11 21:34:04 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-11 21:34:04 +0000 |
commit | 54d5e81df9c1a1971dc81b828d0b5a1b1d5096f1 (patch) | |
tree | 3597007bcb368474c8dc25a79d69070d5b2b0b9e | |
parent | 0685abfd0f1da692407aa4dec3100df715f3b206 (diff) | |
download | busybox-w32-54d5e81df9c1a1971dc81b828d0b5a1b1d5096f1.tar.gz busybox-w32-54d5e81df9c1a1971dc81b828d0b5a1b1d5096f1.tar.bz2 busybox-w32-54d5e81df9c1a1971dc81b828d0b5a1b1d5096f1.zip |
squash a warning
git-svn-id: svn://busybox.net/trunk/busybox@6174 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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); |