summaryrefslogtreecommitdiff
path: root/sys/arch/vax/boot/sd.c
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1998-05-13 07:30:28 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1998-05-13 07:30:28 +0000
commit010cf40c8489f1dc39784741b021522115923f9e (patch)
treef13404491fe2a915892176758c61533ed68d5f13 /sys/arch/vax/boot/sd.c
parent763973eaa8f9842f3ee719cf88f1d008d209f0d8 (diff)
Use DEV_BSIZE instead of the wasteful MAXBSIZE for buffer size.
Diffstat (limited to 'sys/arch/vax/boot/sd.c')
-rw-r--r--sys/arch/vax/boot/sd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/boot/sd.c b/sys/arch/vax/boot/sd.c
index d3098b99b3b..72b5318cecc 100644
--- a/sys/arch/vax/boot/sd.c
+++ b/sys/arch/vax/boot/sd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sd.c,v 1.2 1997/05/29 00:04:26 niklas Exp $ */
+/* $OpenBSD: sd.c,v 1.3 1998/05/13 07:30:27 niklas Exp $ */
/* $NetBSD: sd.c,v 1.1 1996/08/02 11:22:36 ragge Exp $ */
/*
@@ -135,7 +135,7 @@ sdreset(ctlr, unit)
{
}
-char io_buf[MAXBSIZE];
+char io_buf[DEV_BSIZE];
sdgetinfo(ss)
register struct sd_softc *ss;