From eaafcf0c76fe5a21f180c1a00a590e5f1d296ebc Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Mon, 9 Dec 2013 23:57:27 +0100 Subject: device/cons.c: fix argument list * device/cons.c (romgetc, romputc): Fix argument list. --- device/cons.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/device/cons.c b/device/cons.c index b35e79f..285fb99 100644 --- a/device/cons.c +++ b/device/cons.c @@ -42,8 +42,8 @@ static struct consdev *cn_tab = 0; /* physical console device info */ * is enabled. This can be useful to debug (or catch panics from) code early * in the bootstrap procedure. */ -int (*romgetc)() = 0; -void (*romputc)() = 0; +int (*romgetc)(char c) = 0; +void (*romputc)(char c) = 0; #if CONSBUFSIZE > 0 /* -- cgit v1.2.3