diff options
author | grog <grog@FreeBSD.org> | 1999-01-24 05:14:39 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 1999-01-24 05:14:39 +0000 |
commit | 06e9cea3c560bb61022e7b92ceed593f854842f5 (patch) | |
tree | 57715fa4142323151c7ba12c0aab22236b67f28f /sys/dev/vinum/vinumioctl.c | |
parent | f8af5b21059c88e1234cdb41f6d3e87a86fb50ce (diff) | |
download | FreeBSD-src-06e9cea3c560bb61022e7b92ceed593f854842f5.zip FreeBSD-src-06e9cea3c560bb61022e7b92ceed593f854842f5.tar.gz |
Correct #include in vinumioctl.c to compile correctly
without VINUMDEBUG
Submitted-by: peter
Diffstat (limited to 'sys/dev/vinum/vinumioctl.c')
-rw-r--r-- | sys/dev/vinum/vinumioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vinum/vinumioctl.c b/sys/dev/vinum/vinumioctl.c index a2052b8..a2e3f2b 100644 --- a/sys/dev/vinum/vinumioctl.c +++ b/sys/dev/vinum/vinumioctl.c @@ -35,7 +35,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumioctl.c,v 1.7 1999/01/18 03:36:17 grog Exp grog $ + * $Id: vinumioctl.c,v 1.6 1999/01/21 00:35:35 grog Exp $ */ #define STATIC /* nothing while we're testing XXX */ @@ -43,10 +43,10 @@ #define REALLYKERNEL #include "opt_vinum.h" #include <dev/vinum/vinumhdr.h> +#include <dev/vinum/request.h> #include <sys/sysproto.h> /* for sync(2) */ #ifdef VINUMDEBUG #include <sys/reboot.h> -#include <dev/vinum/request.h> #endif jmp_buf command_fail; /* return on a failed command */ |