Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix the last change. The variable still has to end in _data.
  • Loading branch information
Ulrich Drepper committed Aug 27, 2002
1 parent b5d482d commit 3832592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locale/xlocale.c
Expand Up @@ -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

0 comments on commit 3832592

Please sign in to comment.