diff options
author | Peter Johanson <[email protected]> | 2024-09-23 10:28:56 -0600 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2024-09-23 10:31:43 -0600 |
commit | f992352936f6556da8b343a34e75ac61514d0ecf (patch) | |
tree | cf3000dbd252822cc7f7ceee8af7f9db43aeafe8 /app | |
parent | 8166527ea35923d8be6278b9d1727285dd504d3c (diff) | |
download | zmk-f992352936f6556da8b343a34e75ac61514d0ecf.tar.gz zmk-f992352936f6556da8b343a34e75ac61514d0ecf.zip |
chore: Formatting fix.
Diffstat (limited to 'app')
-rw-r--r-- | app/src/behavior_queue.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app/src/behavior_queue.c b/app/src/behavior_queue.c index 86837f4233..82c58ca854 100644 --- a/app/src/behavior_queue.c +++ b/app/src/behavior_queue.c @@ -35,11 +35,10 @@ static void behavior_queue_process_next(struct k_work *work) { LOG_DBG("Invoking %s: 0x%02x 0x%02x", item.binding.behavior_dev, item.binding.param1, item.binding.param2); - struct zmk_behavior_binding_event event = { - .position = item.position, - .timestamp = k_uptime_get(), + struct zmk_behavior_binding_event event = {.position = item.position, + .timestamp = k_uptime_get(), #if IS_ENABLED(CONFIG_ZMK_SPLIT) - .source = item.source + .source = item.source #endif }; |