diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-02-08 22:41:53 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-02-08 22:41:53 +0000 |
commit | 7be79d1dabf4aa2c866b352e2a4ab286a403e5d6 (patch) | |
tree | d445472670515452a4a239cef652c9f1b617f841 /sys/isofs/cd9660 | |
parent | 5f824803e29da9efcd793a89ec59fe8a8297a269 (diff) |
Updates to match type changes in syscall tables
Diffstat (limited to 'sys/isofs/cd9660')
-rw-r--r-- | sys/isofs/cd9660/cd9660_extern.h | 4 | ||||
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/isofs/cd9660/cd9660_extern.h b/sys/isofs/cd9660/cd9660_extern.h index 3bd0cd8b662..c53d6c53e33 100644 --- a/sys/isofs/cd9660/cd9660_extern.h +++ b/sys/isofs/cd9660/cd9660_extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_extern.h,v 1.1 1997/11/08 20:54:29 niklas Exp $ */ +/* $OpenBSD: cd9660_extern.h,v 1.2 1998/02/08 22:41:32 tholo Exp $ */ /* $NetBSD: cd9660_extern.h,v 1.1 1997/01/24 00:24:53 cgd Exp $ */ /*- @@ -83,7 +83,7 @@ struct iso_mnt { #define blksize(imp, ip, lbn) ((imp)->logical_block_size) int cd9660_mount __P((struct mount *, - char *, caddr_t, struct nameidata *, struct proc *)); + const char *, caddr_t, struct nameidata *, struct proc *)); int cd9660_start __P((struct mount *, int, struct proc *)); int cd9660_unmount __P((struct mount *, int, struct proc *)); int cd9660_root __P((struct mount *, struct vnode **)); diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 8978dd8f650..923c285ef8b 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_vfsops.c,v 1.12 1997/11/08 17:21:08 niklas Exp $ */ +/* $OpenBSD: cd9660_vfsops.c,v 1.13 1998/02/08 22:41:32 tholo Exp $ */ /* $NetBSD: cd9660_vfsops.c,v 1.26 1997/06/13 15:38:58 pk Exp $ */ /*- @@ -131,7 +131,7 @@ cd9660_mountroot() int cd9660_mount(mp, path, data, ndp, p) register struct mount *mp; - char *path; + const char *path; caddr_t data; struct nameidata *ndp; struct proc *p; |