summaryrefslogtreecommitdiffstats
path: root/sys/isa
diff options
context:
space:
mode:
authorrich <rich@FreeBSD.org>1994-02-01 15:09:10 +0000
committerrich <rich@FreeBSD.org>1994-02-01 15:09:10 +0000
commitdc70dc2487ee3b6ac332240a4f67200d3dc35578 (patch)
treece8e56a1cb23a103917024035b9ae307c8ebe2ea /sys/isa
parent2d4503f95a1e3814a272835b17e3ec9f3492b495 (diff)
downloadFreeBSD-src-dc70dc2487ee3b6ac332240a4f67200d3dc35578.zip
FreeBSD-src-dc70dc2487ee3b6ac332240a4f67200d3dc35578.tar.gz
Add missing arg to Debugger() call.
Add missing close paren in sgetc() definition.
Diffstat (limited to 'sys/isa')
-rw-r--r--sys/isa/syscons.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/isa/syscons.c b/sys/isa/syscons.c
index 7132588..889be4d 100644
--- a/sys/isa/syscons.c
+++ b/sys/isa/syscons.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from:@(#)syscons.c 1.3 940129
- * $Id: syscons.c,v 1.29 1994/02/01 10:43:02 ache Exp $
+ * $Id: syscons.c,v 1.30 1994/02/01 11:13:49 ache Exp $
*
*/
@@ -2303,7 +2303,7 @@ next_code:
if (cur_console->smode.mode == VT_AUTO &&
console[0].smode.mode == VT_AUTO)
switch_scr(0);
- Debugger();
+ Debugger("manual escape to debugger");
return(NOKEY);
#else
printf("No debugger in kernel\n");
@@ -2389,7 +2389,7 @@ int getchar(void)
u_int sgetc(int noblock)
{
- return (scgetc(noblock & 0xff);
+ return (scgetc(noblock & 0xff));
}
int pcmmap(dev_t dev, int offset, int nprot)
OpenPOWER on IntegriCloud