diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-07 02:17:36 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-07 02:17:36 +0000 |
commit | 31e5466285d1863bb0f843d91a9c125c75b9c872 (patch) | |
tree | dcb34d093bf7abcc6c0ec65dfa199f04a6ef3ec0 /ar.c | |
parent | 3b5d1587780a1b4649955ef02276a7d2b71844e0 (diff) | |
download | busybox-w32-31e5466285d1863bb0f843d91a9c125c75b9c872.tar.gz busybox-w32-31e5466285d1863bb0f843d91a9c125c75b9c872.tar.bz2 busybox-w32-31e5466285d1863bb0f843d91a9c125c75b9c872.zip |
Fix warning
git-svn-id: svn://busybox.net/trunk/busybox@2275 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'ar.c')
-rw-r--r-- | ar.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -216,7 +216,7 @@ extern int ar_main(int argc, char **argv) | |||
216 | if (funct & verbose) { | 216 | if (funct & verbose) { |
217 | printf("%s %d/%d %8d %s ", mode_string(extract_list->mode), | 217 | printf("%s %d/%d %8d %s ", mode_string(extract_list->mode), |
218 | extract_list->uid, extract_list->gid, | 218 | extract_list->uid, extract_list->gid, |
219 | extract_list->size, time_string(extract_list->mtime)); | 219 | (int) extract_list->size, time_string(extract_list->mtime)); |
220 | } | 220 | } |
221 | if ((funct & display) || (funct & verbose)){ | 221 | if ((funct & display) || (funct & verbose)){ |
222 | printf("%s\n", extract_list->name); | 222 | printf("%s\n", extract_list->name); |