Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/dreamcast/dev/maple Don't make the reporting of the...
details: https://anonhg.NetBSD.org/src/rev/aab699f17274
branches: trunk
changeset: 503156:aab699f17274
user: thorpej <thorpej%NetBSD.org@localhost>
date: Fri Feb 02 03:09:16 2001 +0000
description:
Don't make the reporting of the keyboard type a parenthetical.
diffstat:
sys/arch/dreamcast/dev/maple/mkbd.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (33 lines):
diff -r ff3abe6a7dd8 -r aab699f17274 sys/arch/dreamcast/dev/maple/mkbd.c
--- a/sys/arch/dreamcast/dev/maple/mkbd.c Fri Feb 02 03:07:29 2001 +0000
+++ b/sys/arch/dreamcast/dev/maple/mkbd.c Fri Feb 02 03:09:16 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: mkbd.c,v 1.4 2001/01/31 03:21:03 thorpej Exp $ */
+/* $NetBSD: mkbd.c,v 1.5 2001/02/02 03:09:16 thorpej Exp $ */
/*-
* Copyright (c) 2001 Marcus Comstedt
@@ -128,19 +128,19 @@
MAPLE_FUNC_KEYBOARD) >> 24;
switch(kbdtype) {
case 1:
- printf(" (Japanese keyboard)");
+ printf(": Japanese keyboard");
mkbd_keymapdata.layout = KB_JP;
break;
case 2:
- printf(" (US keyboard)");
+ printf(": US keyboard");
mkbd_keymapdata.layout = KB_US;
break;
case 3:
- printf(" (European keyboard)");
+ printf(": European keyboard");
mkbd_keymapdata.layout = KB_UK;
break;
default:
- printf(" (Unknown keyboard %d)", kbdtype);
+ printf(": Unknown keyboard %d", kbdtype);
}
printf("\n");
Home |
Main Index |
Thread Index |
Old Index