remove an extraneous g_warning
This commit is contained in:
parent
6d97bd517f
commit
c473d5f80a
1 changed files with 1 additions and 3 deletions
|
@ -49,10 +49,8 @@ gboolean kbind(GList *keylist, Action *action)
|
||||||
g_assert(keylist != NULL);
|
g_assert(keylist != NULL);
|
||||||
g_assert(action != NULL);
|
g_assert(action != NULL);
|
||||||
|
|
||||||
if (!(tree = tree_build(keylist))) {
|
if (!(tree = tree_build(keylist)))
|
||||||
g_warning("invalid binding");
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
|
||||||
if ((t = tree_find(tree, &conflict)) != NULL) {
|
if ((t = tree_find(tree, &conflict)) != NULL) {
|
||||||
/* already bound to something */
|
/* already bound to something */
|
||||||
g_warning("keychain is already bound");
|
g_warning("keychain is already bound");
|
||||||
|
|
Loading…
Reference in a new issue