diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-27 03:49:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-27 03:49:39 +0000 |
commit | 38325923950d9dbdad735aa4bc8ce54977ef572c (patch) | |
tree | 8605c5133dda093cad4fe244ac76a63ce6eafb35 /locale/xlocale.c | |
parent | b5d482d00ef8bc29f0b4dd84812d52759ebdd630 (diff) | |
download | glibc-38325923950d9dbdad735aa4bc8ce54977ef572c.tar glibc-38325923950d9dbdad735aa4bc8ce54977ef572c.tar.gz glibc-38325923950d9dbdad735aa4bc8ce54977ef572c.tar.bz2 glibc-38325923950d9dbdad735aa4bc8ce54977ef572c.zip |
Fix the last change. The variable still has to end in _data.
Diffstat (limited to 'locale/xlocale.c')
-rw-r--r-- | locale/xlocale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/locale/xlocale.c b/locale/xlocale.c index cad5b95eda..d90437e1f9 100644 --- a/locale/xlocale.c +++ b/locale/xlocale.c @@ -66,7 +66,7 @@ __thread void *__libc_tsd_LOCALE = &_nl_global_locale; __libc_tsd_define (, LOCALE) /* This is a bad kludge presuming the variable name used by the macros. Using typeof makes sure to barf if we do not match the macro definition. */ -__typeof (__libc_tsd_LOCALE) __libc_tsd_LOCALE = &_nl_global_locale; +__typeof (__libc_tsd_LOCALE) __libc_tsd_LOCALE_data = &_nl_global_locale; # endif #endif |