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-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0aba91f7529f0208ea15457bd5a1c39d6bf4e967;p=pspp (dirfd): Reflect the fact that DIR_TO_FD now takes an argument. --- 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); }