diff options
author | Tony Breeds <tony@bakeyournoodle.com> | 2008-03-04 08:05:06 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-03-04 19:01:26 +0300 |
commit | 10a7f3135ac4937a3dc8ed11614a2b70cbd44728 (patch) | |
tree | 5e374e483e89436c1f3e78290e58a19a6c78e9d9 /drivers/s390 | |
parent | a6c0e1f71d37b89c883d636eca48a017c055c8c4 (diff) | |
download | linux-10a7f3135ac4937a3dc8ed11614a2b70cbd44728.tar.xz |
Build fix for drivers/s390/char/defkeymap.c
Commit 5ce2087ed0eb424e0889bdc9102727f65d2ecdde (Fix default compose
table initialization) left a trailing quote.
CC drivers/s390/char/defkeymap.o
drivers/s390/char/defkeymap.c:155: error: missing terminating ' character
drivers/s390/char/defkeymap.c:156: error: syntax error before ';' token
make[3]: *** [drivers/s390/char/defkeymap.o] Error 1
Fix that.
Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/char/defkeymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/char/defkeymap.c b/drivers/s390/char/defkeymap.c index 9692d6a205ef..07c7f31081bc 100644 --- a/drivers/s390/char/defkeymap.c +++ b/drivers/s390/char/defkeymap.c @@ -152,7 +152,7 @@ char *func_table[MAX_NR_FUNC] = { struct kbdiacruc accent_table[MAX_DIACR] = { {'^', 'c', 0003}, {'^', 'd', 0004}, - {'^', 'z', 0032}, {'^', 0012', 0000}, + {'^', 'z', 0032}, {'^', 0012, 0000}, }; unsigned int accent_table_size = 4; |