From 00a6fe20a5936eb1091ec45ee724081db0b6f114 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 5 Jul 2000 13:22:48 +0000 Subject: [PATCH] (FCT): Only declare len if !WIDE_CHAR_VERSION to silence GCC. --- posix/fnmatch_loop.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/posix/fnmatch_loop.c b/posix/fnmatch_loop.c index 8b163be..005dd99 100644 --- a/posix/fnmatch_loop.c +++ b/posix/fnmatch_loop.c @@ -380,7 +380,9 @@ FCT (pattern, string, no_leading_period, flags) /* We found a table entry. Now see whether the character we are currently at has the same equivalance class value. */ +# if !WIDE_CHAR_VERSION int len = weights[idx]; +# endif int32_t idx2; const UCHAR *np = (const UCHAR *) n; -- 2.7.4