From ad5b53b1075af3514ae5e1c665f95529e4e7818e Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 20 Nov 2000 10:08:52 +0000 Subject: Update. * intl/dcigettext.c (transcmp): Make s1 and s2 const. (DCIGETTEXT): Make domaindata variable const. * intl/loadmsgcat.c (_nl_load_domain): Rearrange domain initialization to avoid warning. --- intl/dcigettext.c | 15 +++++++++------ intl/loadmsgcat.c | 7 +++---- 2 files changed, 12 insertions(+), 10 deletions(-) (limited to 'intl') diff --git a/intl/dcigettext.c b/intl/dcigettext.c index c47cccf512..dd3a559f58 100644 --- a/intl/dcigettext.c +++ b/intl/dcigettext.c @@ -243,10 +243,13 @@ static void *root; static int transcmp (const void *p1, const void *p2) { - struct known_translation_t *s1 = (struct known_translation_t *) p1; - struct known_translation_t *s2 = (struct known_translation_t *) p2; + const struct known_translation_t *s1; + const struct known_translation_t *s2; int result; + s1 = (const struct known_translation_t *) p1; + s2 = (const struct known_translation_t *) p2; + result = strcmp (s1->msgid, s2->msgid); if (result == 0) { @@ -564,8 +567,8 @@ DCIGETTEXT (domainname, msgid1, msgid2, plural, n, category) if (plural != 0) { - struct loaded_domain *domaindata = - (struct loaded_domain *) domain->data; + const struct loaded_domain *domaindata = + (const struct loaded_domain *) domain->data; index = plural_eval (domaindata->plural, n); if (index >= domaindata->nplurals) /* This should never happen. It means the plural expression @@ -662,7 +665,7 @@ _nl_find_msg (domain_file, msgid, index) const char *msgid; unsigned long int index; { - struct loaded_domain *domain; + const struct loaded_domain *domain; size_t act; char *result; @@ -672,7 +675,7 @@ _nl_find_msg (domain_file, msgid, index) if (domain_file->data == NULL) return NULL; - domain = (struct loaded_domain *) domain_file->data; + domain = (const struct loaded_domain *) domain_file->data; /* Locate the MSGID and its translation. */ if (domain->hash_size > 2 && domain->hash_tab != NULL) diff --git a/intl/loadmsgcat.c b/intl/loadmsgcat.c index aad6dfe5db..6b09815437 100644 --- a/intl/loadmsgcat.c +++ b/intl/loadmsgcat.c @@ -214,12 +214,11 @@ _nl_load_domain (domain_file) return; } - domain_file->data - = (struct loaded_domain *) malloc (sizeof (struct loaded_domain)); - if (domain_file->data == NULL) + domain = (struct loaded_domain *) malloc (sizeof (struct loaded_domain)); + if (domain == NULL) return; + domain_file->data = domain; - domain = (struct loaded_domain *) domain_file->data; domain->data = (char *) data; domain->use_mmap = use_mmap; domain->mmap_size = size; -- cgit v1.2.3