diff options
author | 2010-04-03 15:22:44 +0000 | |
---|---|---|
committer | 2010-04-03 15:22:44 +0000 | |
commit | 13f2281d98bdcf3289c3345ef793b901580c1c2c (patch) | |
tree | 5a226b6da1b95a09b43a38d624d8310cc90e8509 | |
parent | You cannot save a pointer to your attach arguments and expect it to point (diff) | |
download | wireguard-openbsd-13f2281d98bdcf3289c3345ef793b901580c1c2c.tar.xz wireguard-openbsd-13f2281d98bdcf3289c3345ef793b901580c1c2c.zip |
scsi_all.h is needed before scsi_disk.h now. ok marco
-rw-r--r-- | sbin/bioctl/bioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/bioctl/bioctl.c b/sbin/bioctl/bioctl.c index 50f6fbe2655..f43367da18c 100644 --- a/sbin/bioctl/bioctl.c +++ b/sbin/bioctl/bioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bioctl.c,v 1.91 2010/01/08 16:38:22 halex Exp $ */ +/* $OpenBSD: bioctl.c,v 1.92 2010/04/03 15:22:44 nicm Exp $ */ /* * Copyright (c) 2004, 2005 Marco Peereboom @@ -32,8 +32,8 @@ #include <sys/queue.h> #include <sys/types.h> #include <sys/stat.h> -#include <scsi/scsi_disk.h> #include <scsi/scsi_all.h> +#include <scsi/scsi_disk.h> #include <dev/biovar.h> #include <dev/softraidvar.h> #include <sys/types.h> |