diff options
author | 2013-10-09 20:08:20 +0000 | |
---|---|---|
committer | 2013-10-09 20:08:20 +0000 | |
commit | 8b8edfbf624146952b883f8904779161d13bb3e2 (patch) | |
tree | 0afd433ce87f1529dbacc2fdf74b3c65f8b96a20 | |
parent | Fix parse_args() to ignore device specification and correctly append the (diff) | |
download | wireguard-openbsd-8b8edfbf624146952b883f8904779161d13bb3e2.tar.xz wireguard-openbsd-8b8edfbf624146952b883f8904779161d13bb3e2.zip |
Fix build (forgot to rerun make depend)
-rw-r--r-- | sys/arch/aviion/stand/boot/scsi.h | 4 | ||||
-rw-r--r-- | sys/arch/aviion/stand/boot/sd.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/aviion/stand/boot/scsi.h b/sys/arch/aviion/stand/boot/scsi.h index a5952a23d08..aa2c6b18fe7 100644 --- a/sys/arch/aviion/stand/boot/scsi.h +++ b/sys/arch/aviion/stand/boot/scsi.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scsi.h,v 1.1 2013/10/09 20:03:05 miod Exp $ */ +/* $OpenBSD: scsi.h,v 1.2 2013/10/09 20:08:20 miod Exp $ */ #include <scsi/scsi_all.h> #include <scsi/scsiconf.h> @@ -77,6 +77,8 @@ #include <scsi/scsi_message.h> +#include <sys/disklabel.h> + struct scsi_private { void *scsicookie; int (*scsicmd)(void *, void *, size_t, void *, size_t, size_t *); diff --git a/sys/arch/aviion/stand/boot/sd.c b/sys/arch/aviion/stand/boot/sd.c index 92da668de69..76b2f5bc6c1 100644 --- a/sys/arch/aviion/stand/boot/sd.c +++ b/sys/arch/aviion/stand/boot/sd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sd.c,v 1.2 2013/10/09 20:03:05 miod Exp $ */ +/* $OpenBSD: sd.c,v 1.3 2013/10/09 20:08:20 miod Exp $ */ /* * Copyright (c) 2013 Miodrag Vallat. @@ -21,8 +21,6 @@ #include <sys/param.h> #include <stand.h> -#include <sys/disklabel.h> - #include "scsi.h" #include <scsi/scsi_disk.h> |