diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-06-18 19:55:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-06-18 19:55:01 +0000 |
commit | 8cb569b756c19125593e556efa7c380203ff3787 (patch) | |
tree | 038cf95509293fc07986522a591eda03bd1b625d /intl/localealias.c | |
parent | 3f121ed386d60de3bdf1dd054ba742b4ae17e7a1 (diff) | |
download | glibc-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/localealias.c')
-rw-r--r-- | intl/localealias.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/intl/localealias.c b/intl/localealias.c index 7f668ec360..45c16c6e53 100644 --- a/intl/localealias.c +++ b/intl/localealias.c @@ -256,10 +256,10 @@ read_alias_file (fname, fname_len) b) these fields must be usable as file names and so must not be that long */ - unsigned char buf[BUFSIZ]; - unsigned char *alias; - unsigned char *value; - unsigned char *cp; + char buf[BUFSIZ]; + char *alias; + char *value; + char *cp; if (fgets (buf, sizeof buf, fp) == NULL) /* EOF reached. */ |