* 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
 /*
-- 
1.8.1.4


Reply via email to