summaryrefslogtreecommitdiff
path: root/libc/misc/glob
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-01-23 22:37:01 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-01-23 22:37:01 +0100
commit95bb1ae902f590156048149c73da48fe851ed224 (patch)
treec922cf2e189531694f3ad5b8adbcff9492547207 /libc/misc/glob
parentd75f980f379dfbbe70ae8fb0956693a95af2fca2 (diff)
silence some warnings about unused params
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/misc/glob')
-rw-r--r--libc/misc/glob/glob-susv3.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/glob/glob-susv3.c b/libc/misc/glob/glob-susv3.c
index 1d64249c7..59b4d8e5f 100644
--- a/libc/misc/glob/glob-susv3.c
+++ b/libc/misc/glob/glob-susv3.c
@@ -183,7 +183,8 @@ int __glob_match_in_dir(const char *d, const char *p, int flags, int (*errfunc)(
# ifndef BUILD_GLOB64
static
# endif
-int __glob_ignore_err(const char *path, int err)
+int __glob_ignore_err(const char * path attribute_unused,
+ int err attribute_unused)
{
return 0;
}