diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-11-20 10:08:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-11-20 10:08:52 +0000 |
commit | ad5b53b1075af3514ae5e1c665f95529e4e7818e (patch) | |
tree | 67c20f2f1c091728e83ef830c4abd7d9a2c2e28e /intl | |
parent | 17427edd1fc510ae6eb7903cc8664e15500490d6 (diff) | |
download | glibc-ad5b53b1075af3514ae5e1c665f95529e4e7818e.zip glibc-ad5b53b1075af3514ae5e1c665f95529e4e7818e.tar.gz glibc-ad5b53b1075af3514ae5e1c665f95529e4e7818e.tar.bz2 |
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.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/dcigettext.c | 15 | ||||
-rw-r--r-- | intl/loadmsgcat.c | 7 |
2 files changed, 12 insertions, 10 deletions
diff --git a/intl/dcigettext.c b/intl/dcigettext.c index c47cccf..dd3a559 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 aad6dfe..6b09815 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; |