summaryrefslogtreecommitdiffstats
path: root/contrib/netbsd-tests/lib/libc/gen
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2015-11-15 05:00:32 +0000
committerngie <ngie@FreeBSD.org>2015-11-15 05:00:32 +0000
commit7cf15411bb23db62e4fb85d36f50f3d15371cc06 (patch)
treee2774a66a2f5374c8e642059c9677ab84735ec5c /contrib/netbsd-tests/lib/libc/gen
parent4ded20769a38fabb4ed4d123468d652a3371dcfa (diff)
downloadFreeBSD-src-7cf15411bb23db62e4fb85d36f50f3d15371cc06.zip
FreeBSD-src-7cf15411bb23db62e4fb85d36f50f3d15371cc06.tar.gz
Fix -Wunused warnings with variables used unlit code by adding appropriate #ifdef
guards around the variables MFC after: 3 days Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'contrib/netbsd-tests/lib/libc/gen')
-rw-r--r--contrib/netbsd-tests/lib/libc/gen/t_glob.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/lib/libc/gen/t_glob.c b/contrib/netbsd-tests/lib/libc/gen/t_glob.c
index 198148c..0572a42 100644
--- a/contrib/netbsd-tests/lib/libc/gen/t_glob.c
+++ b/contrib/netbsd-tests/lib/libc/gen/t_glob.c
@@ -91,9 +91,11 @@ static struct gl_dir d[] = {
{ "a/b", b, __arraycount(b), 0 },
};
+#ifndef __FreeBSD__
static const char *glob_star[] = {
"a/1", "a/3", "a/4", "a/b", "a/b/w", "a/b/x", "a/b/y", "a/b/z",
};
+#endif
static const char *glob_star_not[] = {
"a/1", "a/3", "a/4", "a/b",
OpenPOWER on IntegriCloud