unknown key into a dprintf.
+2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/term/at_keyboard.c (fetch_key): Make a printf on
+ unknown key into a dprintf.
+
2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/emu/hostdisk.c (linux_find_partition): Don't abort
if (!ret)
{
if (was_ext)
- grub_printf ("Unknown key 0xe0+0x%02x from set %d\n",
- at_key, current_set);
+ grub_dprintf ("atkeyb", "Unknown key 0xe0+0x%02x from set %d\n",
+ at_key, current_set);
else
- grub_printf ("Unknown key 0x%02x from set %d\n",
- at_key, current_set);
+ grub_dprintf ("atkeyb", "Unknown key 0x%02x from set %d\n",
+ at_key, current_set);
return -1;
}
return ret;