From: Jim Meyering Date: Sat, 3 Nov 2001 18:50:53 +0000 (+0000) Subject: (dirfd): Reflect the fact that DIR_TO_FD now takes an argument. X-Git-Tag: cvs-readonly~5588 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=0aba91f7529f0208ea15457bd5a1c39d6bf4e967;p=gnulib.git (dirfd): Reflect the fact that DIR_TO_FD now takes an argument. --- diff --git a/lib/dirfd.c b/lib/dirfd.c index e23406353..29761bf72 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); }