diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-05-13 16:16:39 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-05-13 16:16:39 +0000 |
commit | a18552735810c88ba4642c42ad6b6b2abdb7f4d0 (patch) | |
tree | 087486597c96e1e0ab9c93fbed5573a3e053aeaa /sys/arch/amiga/stand | |
parent | fa156f2c6035283ed84757ade1d19988ec42a8d6 (diff) |
slight KNF
Diffstat (limited to 'sys/arch/amiga/stand')
-rw-r--r-- | sys/arch/amiga/stand/boot/console.c | 8 |
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; |