diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-11-12 01:23:45 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-11-12 01:23:45 -0500 |
commit | 5e2b63c65892e054980570957f533312cfd223c2 (patch) | |
tree | 2d9ca65c8bdbd7e502101019708b8c907599a4d7 /posix/regex_internal.h | |
parent | e7f4b08ee9b36cc1fdb7d7f72013788a832a9f22 (diff) | |
download | glibc-5e2b63c65892e054980570957f533312cfd223c2.tar glibc-5e2b63c65892e054980570957f533312cfd223c2.tar.gz glibc-5e2b63c65892e054980570957f533312cfd223c2.tar.bz2 glibc-5e2b63c65892e054980570957f533312cfd223c2.zip |
Fix warnings in regex
Diffstat (limited to 'posix/regex_internal.h')
-rw-r--r-- | posix/regex_internal.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/posix/regex_internal.h b/posix/regex_internal.h index 65a9905860..74dd23074d 100644 --- a/posix/regex_internal.h +++ b/posix/regex_internal.h @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2005, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 2002-2005, 2007, 2008, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>. @@ -744,7 +744,6 @@ re_string_elem_size_at (const re_string_t *pstr, int idx) # ifdef _LIBC const unsigned char *p, *extra; const int32_t *table, *indirect; - int32_t tmp; # include <locale/weight.h> uint_fast32_t nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES); @@ -756,7 +755,7 @@ re_string_elem_size_at (const re_string_t *pstr, int idx) indirect = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTMB); p = pstr->mbs + idx; - tmp = findidx (&p); + findidx (&p); return p - pstr->mbs - idx; } else |