diff options
author | dillon <dillon@FreeBSD.org> | 1999-01-29 23:18:50 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 1999-01-29 23:18:50 +0000 |
commit | a784c6e33d7c94f709bd5f0598ee883c076c987d (patch) | |
tree | 6a2276aaa3c3b53f9e242fdbe494571370dbe900 /sys/kern/vfs_export.c | |
parent | 072a211f3573aae83ee729df53b1c57d9f3e80cc (diff) | |
download | FreeBSD-src-a784c6e33d7c94f709bd5f0598ee883c076c987d.zip FreeBSD-src-a784c6e33d7c94f709bd5f0598ee883c076c987d.tar.gz |
More const fixes for -Wall, -Wcast-qual
Diffstat (limited to 'sys/kern/vfs_export.c')
-rw-r--r-- | sys/kern/vfs_export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_export.c b/sys/kern/vfs_export.c index 23a4e83..4bebc5e 100644 --- a/sys/kern/vfs_export.c +++ b/sys/kern/vfs_export.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.183 1999/01/21 08:29:05 dillon Exp $ + * $Id: vfs_subr.c,v 1.184 1999/01/28 00:57:47 dillon Exp $ */ /* @@ -905,7 +905,7 @@ vn_syncer_add_to_worklist(vp, delay) static void sched_sync __P((void)); static struct proc *updateproc; -static struct kproc_desc up_kp = { +static const struct kproc_desc up_kp = { "syncer", sched_sync, &updateproc |