Skip to content

Commit

Permalink
Build fix for drivers/s390/char/defkeymap.c
Browse files Browse the repository at this point in the history
Commit 5ce2087 (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>
  • Loading branch information
Tony Breeds authored and Linus Torvalds committed Mar 4, 2008
1 parent a6c0e1f commit 10a7f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/s390/char/defkeymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 10a7f31

Please sign in to comment.