diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-24 11:06:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-24 11:06:07 +0000 |
commit | 2bb9b13436511135c72904c59396fa8cb6220c42 (patch) | |
tree | 18aa47530032a379025ce35ff55e5add7af1e6ea /sysdeps/unix/sysv/linux/alpha | |
parent | e03c336105ccad9fc962dc4b7c9e225299781cad (diff) | |
download | glibc-2bb9b13436511135c72904c59396fa8cb6220c42.tar glibc-2bb9b13436511135c72904c59396fa8cb6220c42.tar.gz glibc-2bb9b13436511135c72904c59396fa8cb6220c42.tar.bz2 glibc-2bb9b13436511135c72904c59396fa8cb6220c42.zip |
Declare __aio_init.
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/pathconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/pathconf.c b/sysdeps/unix/sysv/linux/alpha/pathconf.c index 15910be9a1..24d6880523 100644 --- a/sysdeps/unix/sysv/linux/alpha/pathconf.c +++ b/sysdeps/unix/sysv/linux/alpha/pathconf.c @@ -51,7 +51,7 @@ __pathconf (const char *path, int name) struct statfs fsbuf; /* Determine the filesystem type. */ - if (__statfs (fd, &fsbuf) < 0) + if (__statfs (path, &fsbuf) < 0) /* not possible, return the default value. */ return LINK_MAX; |