summaryrefslogtreecommitdiffstats
path: root/libutil
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2012-01-11 00:31:04 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2012-01-11 00:31:04 +0000
commit7ed1fa50263e1fdebc82bdc7b8b0d901f6add5f7 (patch)
tree9e7622921dd85b4ac6bbbea280db8d84f74acdef /libutil
parent3d079fe22ea0f5378c08449929b95ad748d810af (diff)
downloadpw-darwin-7ed1fa50263e1fdebc82bdc7b8b0d901f6add5f7.tar.gz
pw-darwin-7ed1fa50263e1fdebc82bdc7b8b0d901f6add5f7.tar.zst
pw-darwin-7ed1fa50263e1fdebc82bdc7b8b0d901f6add5f7.zip
Constify arguments.
Diffstat (limited to 'libutil')
-rw-r--r--libutil/libutil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libutil/libutil.h b/libutil/libutil.h
index 25ac1db..7241503 100644
--- a/libutil/libutil.h
+++ b/libutil/libutil.h
@@ -170,7 +170,7 @@ struct pidfh *pidfile_open(const char *path, mode_t mode, pid_t *pidptr);
int pidfile_write(struct pidfh *pfh);
int pidfile_close(struct pidfh *pfh);
int pidfile_remove(struct pidfh *pfh);
-int pidfile_fileno(struct pidfh *pfh);
+int pidfile_fileno(const struct pidfh *pfh);
#endif
#ifdef _UFS_UFS_QUOTA_H_