summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-11-03 18:50:53 +0000
committerJim Meyering <jim@meyering.net>2001-11-03 18:50:53 +0000
commit0aba91f7529f0208ea15457bd5a1c39d6bf4e967 (patch)
treebad257c4f8defab0c7802e08af967c8488db329b
parent414aaabeca01e64bacafa472ed63cf8155027ebf (diff)
downloadgnulib-0aba91f7529f0208ea15457bd5a1c39d6bf4e967.tar.gz
(dirfd): Reflect the fact that DIR_TO_FD now takes an argument.
-rw-r--r--lib/dirfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dirfd.c b/lib/dirfd.c
index e234063534..29761bf72f 100644
--- a/lib/dirfd.c
+++ b/lib/dirfd.c
@@ -26,5 +26,5 @@
int
dirfd (DIR const *dir_p)
{
- return DIR_TO_FD;
+ return DIR_TO_FD (dir_p);
}