about summary refs log tree commit diff
path: root/intl/dcgettext.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-06-18 19:55:01 +0000
committerUlrich Drepper <drepper@redhat.com>1998-06-18 19:55:01 +0000
commit8cb569b756c19125593e556efa7c380203ff3787 (patch)
tree038cf95509293fc07986522a591eda03bd1b625d /intl/dcgettext.c
parent3f121ed386d60de3bdf1dd054ba742b4ae17e7a1 (diff)
downloadglibc-8cb569b756c19125593e556efa7c380203ff3787.tar.gz
glibc-8cb569b756c19125593e556efa7c380203ff3787.tar.xz
glibc-8cb569b756c19125593e556efa7c380203ff3787.zip
Update.
1998-06-18 19:49  Ulrich Drepper  <drepper@cygnus.com>

	* intl/dcgettext.c: use complete type name.
	* intl/hash-string.h: Likewise.

	* intl/localealias.c: Undo patch from 1998-04-29.
	* intl/l10nflist.c: Likewise.
	* intl/loadinfo.h: Likewise.
Diffstat (limited to 'intl/dcgettext.c')
-rw-r--r--intl/dcgettext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intl/dcgettext.c b/intl/dcgettext.c
index 2a2b895cc9..9f76abf89a 100644
--- a/intl/dcgettext.c
+++ b/intl/dcgettext.c
@@ -298,7 +298,7 @@ DCGETTEXT (domainname, msgid, category)
       size_t path_max;
       char *ret;
 
-      path_max = (unsigned) PATH_MAX;
+      path_max = (unsigned int) PATH_MAX;
       path_max += 2;		/* The getcwd docs say to do this.  */
 
       dirname = (char *) alloca (path_max + dirname_len);