summaryrefslogtreecommitdiff
path: root/kern/gdb.c
diff options
context:
space:
mode:
Diffstat (limited to 'kern/gdb.c')
-rw-r--r--kern/gdb.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/kern/gdb.c b/kern/gdb.c
index 250bf8d8..44658bd2 100644
--- a/kern/gdb.c
+++ b/kern/gdb.c
@@ -28,10 +28,9 @@ void putDebugChar(int character)
/**
* getDebugChar gets a character over the serial port
* for the GDB stub. Its prototyped in stub-i386.c.
- * It uses
*/
-int getDebugChar()
+int getDebugChar()
{
- return comcngetc(0, 10);
+ return comcngetc(0, TRUE);
}