summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormlelstv <mlelstv@NetBSD.org>2020-10-17 10:28:10 +0000
committermlelstv <mlelstv@NetBSD.org>2020-10-17 10:28:10 +0000
commitc035cb0054ad6e2e59744d8b25f0832d54698bf4 (patch)
treed4f4ef0301870a3e440f9e6d864da62a036bf93c /sys/dev
parente9af7cc2f9b8f63ddee4f4a93c90da6cb77a85ab (diff)
Correct KB_NEXT value. No impact since KB_NEXT isn't used anywhere.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/wscons/wsksymdef.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wscons/wsksymdef.h b/sys/dev/wscons/wsksymdef.h
index 97a8a3a8af2..ed6a96a0ea7 100644
--- a/sys/dev/wscons/wsksymdef.h
+++ b/sys/dev/wscons/wsksymdef.h
@@ -1,4 +1,4 @@
-/* $NetBSD: wsksymdef.h,v 1.74 2020/08/29 22:42:53 macallan Exp $ */
+/* $NetBSD: wsksymdef.h,v 1.75 2020/10/17 10:28:10 mlelstv Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -685,7 +685,7 @@ action(KB_UA, 0, 0x1200, "ua", , "Ukrainian")
/* Define all the KB_xx numeric values using above table */
#define KBF_ENUM(tag, tagf, value, cc, ccf, country) tag=value,
-enum { KB_ENC_FUN(KBF_ENUM) KB_NEXT=0x1800 };
+enum { KB_ENC_FUN(KBF_ENUM) KB_NEXT=0x1d00 };
/* Define list of KB_xxx and country codes for array initialisation */
#define KBF_ENCTAB(tag, tagf, value, cc, ccf, country) { tag, cc },