* grub-core/osdep/unix/config.c: Remove extraneous comma.

This commit is contained in:
Michael Chang 2014-09-21 17:49:13 +02:00 committed by Vladimir Serbinenko
parent 631a820038
commit 0aece00c54
9 changed files with 22 additions and 12 deletions

View file

@ -173,8 +173,10 @@ grub_term_map_key (grub_keyboard_key_t code, int status)
key = map_key_core (code, status, &alt_gr_consumed);
if (key == 0 || key == GRUB_TERM_SHIFT)
if (key == 0 || key == GRUB_TERM_SHIFT) {
grub_printf ("Unknown key 0x%x detected\n", code);
return GRUB_TERM_NO_KEY;
}
if (status & GRUB_TERM_STATUS_CAPS)
{