diff options
author | 2003-08-11 10:08:04 +0000 | |
---|---|---|
committer | 2003-08-11 10:08:04 +0000 | |
commit | c57f113d16e74fd9f2001bed0cad355a40bb74d6 (patch) | |
tree | 3c3ad928c380ba6453478e802be726a75a60ba91 /sys/miscfs/procfs/procfs.h | |
parent | constify constant consts (diff) | |
download | wireguard-openbsd-c57f113d16e74fd9f2001bed0cad355a40bb74d6.tar.xz wireguard-openbsd-c57f113d16e74fd9f2001bed0cad355a40bb74d6.zip |
constify constant names
Diffstat (limited to 'sys/miscfs/procfs/procfs.h')
-rw-r--r-- | sys/miscfs/procfs/procfs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/procfs/procfs.h b/sys/miscfs/procfs/procfs.h index e731edcdc32..0608ca7f035 100644 --- a/sys/miscfs/procfs/procfs.h +++ b/sys/miscfs/procfs/procfs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: procfs.h,v 1.19 2003/08/05 20:47:36 tedu Exp $ */ +/* $OpenBSD: procfs.h,v 1.20 2003/08/11 10:08:04 mickey Exp $ */ /* $NetBSD: procfs.h,v 1.17 1996/02/12 15:01:41 christos Exp $ */ /* @@ -108,7 +108,7 @@ struct vfs_namemap { }; int vfs_getuserstr(struct uio *, char *, int *); -vfs_namemap_t *vfs_findname(vfs_namemap_t *, char *, int); +const vfs_namemap_t *vfs_findname(const vfs_namemap_t *, char *, int); int procfs_allocvp(struct mount *, struct vnode **, long, pfstype); int procfs_checkioperm(struct proc *p, struct proc *t); |