summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2001-05-01 02:23:23 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2001-05-01 02:23:23 +0000
commit29304d5f4095de24624e06f7e41f441e69251f07 (patch)
tree4cc2ccb8d9283ec90a6df4e1ed2d94a96f34df5a /sys
parent2f60632972a81bdd387986076b8285c023c02450 (diff)
splhigh -> spltty
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/wscons/wsdisplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wscons/wsdisplay.c b/sys/dev/wscons/wsdisplay.c
index e4c3bf5e31e..93efa045707 100644
--- a/sys/dev/wscons/wsdisplay.c
+++ b/sys/dev/wscons/wsdisplay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsdisplay.c,v 1.24 2001/04/17 23:24:31 aaron Exp $ */
+/* $OpenBSD: wsdisplay.c,v 1.25 2001/05/01 02:23:22 aaron Exp $ */
/* $NetBSD: wsdisplay.c,v 1.37.4.1 2000/06/30 16:27:53 simonb Exp $ */
/*
@@ -2883,7 +2883,7 @@ allocate_copybuffer(struct wsdisplay_softc *sc)
const struct wsscreen_descr *current;
unsigned short size = Copybuffer_size;
- s = splhigh();
+ s = spltty();
for (i = 0; i < nscreens; i++) {
current = *screens_list;
if (( (current->ncols + 1) * current->nrows) > size)