From 354e6102a11f6ce2e39462c158b039a07f18ac7c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 9 Jan 2001 01:04:59 +0000 Subject: Update. * time/Makefile (tests): Add tst-mktime. * time/tst-mktime.c: New file. * posix/tst-dir.c (main): One more mkdir() test. --- intl/dcigettext.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intl') 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) -- cgit v1.2.3