diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-09 01:04:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-09 01:04:59 +0000 |
commit | 354e6102a11f6ce2e39462c158b039a07f18ac7c (patch) | |
tree | d0b61e9e76e22cfea34f764e090d8a659ae45380 /intl | |
parent | f93e323f9e627ae8403ad2fc64663793153bf7ec (diff) | |
download | glibc-354e6102a11f6ce2e39462c158b039a07f18ac7c.tar.gz glibc-354e6102a11f6ce2e39462c158b039a07f18ac7c.tar.xz glibc-354e6102a11f6ce2e39462c158b039a07f18ac7c.zip |
Update.
* time/Makefile (tests): Add tst-mktime. * time/tst-mktime.c: New file. * posix/tst-dir.c (main): One more mkdir() test.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/dcigettext.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/intl/dcigettext.c b/intl/dcigettext.c index c6540b9ab0..75aa03a45f 100644 --- a/intl/dcigettext.c +++ b/intl/dcigettext.c @@ -1,5 +1,5 @@ /* Implementation of the internal dcigettext function. - Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1995-1999, 2000, 2001 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -658,7 +658,7 @@ _nl_find_msg (domain_file, msgid, lengthp) const char *msgid; size_t *lengthp; { - const struct loaded_domain *domain; + struct loaded_domain *domain; size_t act; char *result; size_t resultlen; @@ -669,7 +669,7 @@ _nl_find_msg (domain_file, msgid, lengthp) if (domain_file->data == NULL) return NULL; - domain = (const struct loaded_domain *) domain_file->data; + domain = (struct loaded_domain *) domain_file->data; /* Locate the MSGID and its translation. */ if (domain->hash_size > 2 && domain->hash_tab != NULL) |