From: Jim Meyering Date: Fri, 2 Nov 2001 07:37:19 +0000 (+0000) Subject: put `const' back, now that the .m4 test works X-Git-Tag: FILEUTILS-4_1_1~25 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e06bb85490aaa8cb938b8e5738602e7b8c30221;p=thirdparty%2Fcoreutils.git put `const' back, now that the .m4 test works --- diff --git a/lib/dirfd.c b/lib/dirfd.c index 77ada78de5..e234063534 100644 --- a/lib/dirfd.c +++ b/lib/dirfd.c @@ -24,7 +24,7 @@ #include "dirfd.h" int -dirfd (DIR *dir_p) +dirfd (DIR const *dir_p) { return DIR_TO_FD; }