diff options
author | 2002-05-20 05:27:40 +0000 | |
---|---|---|
committer | 2002-05-20 05:27:40 +0000 | |
commit | 50f7fbed9c2bf010d17aa3c8f5d8b9c40e651e40 (patch) | |
tree | 2fe642a9a6d3a80b52a8b7f4cb8aff5893e90bf0 | |
parent | make sure all the funky stack we allocate are properly alligned, the trap_phys is still uncertain, but it's at the beginning of the section (; (diff) | |
download | wireguard-openbsd-50f7fbed9c2bf010d17aa3c8f5d8b9c40e651e40.tar.xz wireguard-openbsd-50f7fbed9c2bf010d17aa3c8f5d8b9c40e651e40.zip |
make it compile w/ debugging on
-rw-r--r-- | sys/kern/vfs_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index 0207edc5885..cc473b0cc7d 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_init.c,v 1.12 2002/03/14 01:27:06 millert Exp $ */ +/* $OpenBSD: vfs_init.c,v 1.13 2002/05/20 05:27:40 mickey Exp $ */ /* $NetBSD: vfs_init.c,v 1.6 1996/02/09 19:00:58 christos Exp $ */ /* @@ -127,7 +127,7 @@ vfs_opv_init_explicit(vfs_opv_desc) bzero(opv_desc_vector, vfs_opv_numops * sizeof(PFI)); *(vfs_opv_desc->opv_desc_vector_p) = opv_desc_vector; DODEBUG(printf("vector at %p allocated\n", - opv_desc_vector_p)); + opv_desc_vector)); } for (opve_descp = vfs_opv_desc->opv_desc_ops; |