summaryrefslogtreecommitdiff
path: root/lib/dirfd.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-11-02 07:37:19 +0000
committerJim Meyering <jim@meyering.net>2001-11-02 07:37:19 +0000
commit3e06bb85490aaa8cb938b8e5738602e7b8c30221 (patch)
treeabaf09842b6efb18f2dc75ed8ad85a7c3d9150a0 /lib/dirfd.c
parenta427fa83f624f6129e8d22b9e4b48da5cff6bce4 (diff)
downloadcoreutils-3e06bb85490aaa8cb938b8e5738602e7b8c30221.tar.xz
put `const' back, now that the .m4 test works
Diffstat (limited to 'lib/dirfd.c')
-rw-r--r--lib/dirfd.c2
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;
}