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: FILEUTILS-4_1_1~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f2e8e8b2bbd70501234e5bdb99444618d8cda1f;p=thirdparty%2Fcoreutils.git (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); }