diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-29 21:17:05 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-29 21:17:05 +0000 |
commit | 6289dc9f2cb5a451e54341c7c916402d41f21860 (patch) | |
tree | 75e0247a01307e4fc8514bc674c9a431f04992fc | |
parent | fca7efb75404be635731e766bf7015ccfc8a2e2f (diff) | |
download | busybox-w32-6289dc9f2cb5a451e54341c7c916402d41f21860.tar.gz busybox-w32-6289dc9f2cb5a451e54341c7c916402d41f21860.tar.bz2 busybox-w32-6289dc9f2cb5a451e54341c7c916402d41f21860.zip |
- silence warning about unused param
needs revisit later on like many others to use ATTRIBUTE_UNUSED from platform.h
git-svn-id: svn://busybox.net/trunk/busybox@13016 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | archival/libunarchive/header_skip.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/archival/libunarchive/header_skip.c b/archival/libunarchive/header_skip.c index 4430178f8..0b153980e 100644 --- a/archival/libunarchive/header_skip.c +++ b/archival/libunarchive/header_skip.c | |||
@@ -1,7 +1,6 @@ | |||
1 | #include <stdio.h> | 1 | #include <stdio.h> |
2 | #include "unarchive.h" | 2 | #include "unarchive.h" |
3 | 3 | ||
4 | extern void header_skip(const file_header_t *file_header) | 4 | extern void header_skip(const file_header_t *file_header __attribute__((unused))) |
5 | { | 5 | { |
6 | return; | ||
7 | } | 6 | } |