Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/hp300/stand/common Revert part of previous NULL -> ...
details: https://anonhg.NetBSD.org/src/rev/10ad34ae11ab
branches: trunk
changeset: 555318:10ad34ae11ab
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Fri Nov 14 11:39:49 2003 +0000
description:
Revert part of previous NULL -> '\0' changes, where actually NULL is required.
diffstat:
sys/arch/hp300/stand/common/hil.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (28 lines):
diff -r 31118821c006 -r 10ad34ae11ab sys/arch/hp300/stand/common/hil.c
--- a/sys/arch/hp300/stand/common/hil.c Fri Nov 14 10:46:13 2003 +0000
+++ b/sys/arch/hp300/stand/common/hil.c Fri Nov 14 11:39:49 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: hil.c,v 1.5 2003/10/28 17:54:35 tsutsui Exp $ */
+/* $NetBSD: hil.c,v 1.6 2003/11/14 11:39:49 tsutsui Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -256,15 +256,15 @@
*/
struct kbdmap hilkbd_map[] = {
KBD_US, '\0',
- hil_us_keymap, hil_us_shiftmap, hil_us_ctrlmap, '\0', '\0',
+ hil_us_keymap, hil_us_shiftmap, hil_us_ctrlmap, NULL, NULL,
#ifdef UK_KEYBOARD
KBD_UK, '\0',
- hil_uk_keymap, hil_uk_shiftmap, hil_uk_ctrlmap, '\0', '\0',
+ hil_uk_keymap, hil_uk_shiftmap, hil_uk_ctrlmap, NULL, NULL,
#endif
0, '\0',
- '\0', '\0', '\0', '\0', '\0',
+ NULL, NULL, NULL, NULL, NULL,
};
char *hilkbd_keymap = hil_us_keymap;
Home |
Main Index |
Thread Index |
Old Index