Fix extra dereferencing bug
This commit is contained in:
parent
cb9917a498
commit
f4f31b250d
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ int zmk_trigger_behavior_callbacks(struct zmk_behavior_binding *binding,
|
|||
if (source == ZMK_POSITION_STATE_CHANGE_SOURCE_LOCAL) {
|
||||
return invoke_locally(binding, event, pressed);
|
||||
} else {
|
||||
return zmk_split_bt_invoke_behavior(source, &binding, event, pressed);
|
||||
return zmk_split_bt_invoke_behavior(source, binding, event, pressed);
|
||||
}
|
||||
#else
|
||||
return invoke_locally(binding, event, pressed);
|
||||
|
|
Loading…
Add table
Reference in a new issue