summaryrefslogtreecommitdiff
path: root/sys/arch/amiga/stand
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-05-13 16:16:39 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-05-13 16:16:39 +0000
commita18552735810c88ba4642c42ad6b6b2abdb7f4d0 (patch)
tree087486597c96e1e0ab9c93fbed5573a3e053aeaa /sys/arch/amiga/stand
parentfa156f2c6035283ed84757ade1d19988ec42a8d6 (diff)
slight KNF
Diffstat (limited to 'sys/arch/amiga/stand')
-rw-r--r--sys/arch/amiga/stand/boot/console.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/amiga/stand/boot/console.c b/sys/arch/amiga/stand/boot/console.c
index d30af457d36..7f8cbb837ef 100644
--- a/sys/arch/amiga/stand/boot/console.c
+++ b/sys/arch/amiga/stand/boot/console.c
@@ -1,5 +1,5 @@
/*
- * $OpenBSD: console.c,v 1.1 1997/01/16 09:26:32 niklas Exp $
+ * $OpenBSD: console.c,v 1.2 1997/05/13 16:16:38 niklas Exp $
* $NetBSD: console.c,v 1.1.1.1 1996/11/29 23:36:29 is Exp $
*
* Copyright (c) 1996 Ignatios Souvatzis
@@ -92,7 +92,8 @@ consinit() {
if (!cnmp)
goto err;
- cnior = (struct AmigaIO *)CreateIORequest(cnmp, sizeof(struct AmigaIO));
+ cnior = (struct AmigaIO *)CreateIORequest(cnmp,
+ sizeof(struct AmigaIO));
if (!cnior)
goto err;
@@ -100,7 +101,8 @@ consinit() {
if (OpenDevice("console.device", 0, cnior, 0))
goto err;
- tmior = (struct TimerIO *)CreateIORequest(cnmp, sizeof(struct TimerIO));
+ tmior = (struct TimerIO *)CreateIORequest(cnmp,
+ sizeof(struct TimerIO));
if (!tmior)
goto err;