makekeys: Always continue when no alias match found

master
Dan Nicholson 2009-01-22 18:09:51 -08:00
parent 498935c1bc
commit c005d63c58
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ main(int argc, char *argv[])
ret = get_xf86_keysym(buf, key, sizeof(key), ksnum);
if (!ret) {
ret = get_xf86_keysym_alias(buf, key, sizeof(key), ksnum);
if (!ret)
if (ret < 1)
continue;
}