bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 12/29] device/cons.c: fix argument list


From: Marin Ramesa
Subject: [PATCH 12/29] device/cons.c: fix argument list
Date: Mon, 9 Dec 2013 23:57:27 +0100

* 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

[Prev in Thread] Current Thread [Next in Thread]