Finish locale_data -> __locale_data transition.

The transition that was begun here
f095bb7204
was not complete.

Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
Richard Henderson 2010-03-26 09:21:34 -07:00
parent b1c1949e60
commit 6e9331df8b
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-03-26 Richard Henderson <rth@redhat.com>
* locale/setlocale.c (free_category): Finish renaming
struct locale_data to __locale_data.
2010-03-26 Richard Henderson <rth@redhat.com>
* csu/gmon-start.c (ENTRY_POINT, etext): Declare as char[], not void.

View File

@ -465,7 +465,7 @@ libc_hidden_def (setlocale)
static void __libc_freeres_fn_section
free_category (int category,
struct __locale_data *here, struct locale_data *c_data)
struct __locale_data *here, struct __locale_data *c_data)
{
struct loaded_l10nfile *runp = _nl_locale_file_list[category];
@ -481,7 +481,7 @@ free_category (int category,
while (runp != NULL)
{
struct loaded_l10nfile *curr = runp;
struct __locale_data *data = (struct locale_data *) runp->data;
struct __locale_data *data = (struct __locale_data *) runp->data;
if (data != NULL && data != c_data)
_nl_unload_locale (data);