diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-02 07:37:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-02 07:37:19 +0000 |
commit | 3e06bb85490aaa8cb938b8e5738602e7b8c30221 (patch) | |
tree | abaf09842b6efb18f2dc75ed8ad85a7c3d9150a0 | |
parent | a427fa83f624f6129e8d22b9e4b48da5cff6bce4 (diff) | |
download | coreutils-3e06bb85490aaa8cb938b8e5738602e7b8c30221.tar.xz |
put `const' back, now that the .m4 test works
-rw-r--r-- | lib/dirfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dirfd.c b/lib/dirfd.c index 77ada78de..e23406353 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; } |