summaryrefslogtreecommitdiff
path: root/sys/arch/vax/stand/ra.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/stand/ra.c
parent763973eaa8f9842f3ee719cf88f1d008d209f0d8 (diff)
Use DEV_BSIZE instead of the wasteful MAXBSIZE for buffer size.
Diffstat (limited to 'sys/arch/vax/stand/ra.c')
-rw-r--r--sys/arch/vax/stand/ra.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/stand/ra.c b/sys/arch/vax/stand/ra.c
index 0c16abf8b3c..c349d2ec463 100644
--- a/sys/arch/vax/stand/ra.c
+++ b/sys/arch/vax/stand/ra.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ra.c,v 1.4 1997/05/29 00:04:24 niklas Exp $ */
+/* $OpenBSD: ra.c,v 1.5 1998/05/13 07:30:24 niklas Exp $ */
/* $NetBSD: ra.c,v 1.5 1996/08/02 11:22:18 ragge Exp $ */
/*
* Copyright (c) 1995 Ludd, University of Lule}, Sweden.
@@ -85,7 +85,7 @@ volatile struct uda *ubauda;
volatile struct udadevice *udacsr;
struct disklabel ralabel;
struct ra_softc ra_softc;
-char io_buf[MAXBSIZE];
+char io_buf[DEV_BSIZE];
raopen(f, adapt, ctlr, unit, part)
struct open_file *f;