diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-18 19:43:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-18 19:43:13 +0000 |
commit | bd4ebb90a12524707d6318c814c160d4b8c196a5 (patch) | |
tree | 2eae3160afd4f14680029ceaca91b3bddcf329ea /sysdeps | |
parent | 9434de8981e72fcef9949c65e603bfccc0550db6 (diff) | |
download | glibc-bd4ebb90a12524707d6318c814c160d4b8c196a5.tar.gz glibc-bd4ebb90a12524707d6318c814c160d4b8c196a5.tar.xz glibc-bd4ebb90a12524707d6318c814c160d4b8c196a5.zip |
Update.
* sysdeps/unix/sysv/aix/gethostname.c: Fix type of len argument.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/aix/gethostname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/aix/gethostname.c b/sysdeps/unix/sysv/aix/gethostname.c index b213c6ffd5..76c8c72d87 100644 --- a/sysdeps/unix/sysv/aix/gethostname.c +++ b/sysdeps/unix/sysv/aix/gethostname.c @@ -21,7 +21,7 @@ int __gethostname (name, len) char *name; - size_t len; + socklen_t len; { return gethostname (name, len); } |