Skip to content

Commit

Permalink
modules: trigger: Fix log message
Browse files Browse the repository at this point in the history
Fix log message for initialization of dk_buttons_init().

Signed-off-by: Simen S. Røstad <[email protected]>
  • Loading branch information
simensrostad committed Jun 4, 2024
1 parent e3e12a1 commit 0b124bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/modules/trigger/trigger.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ ZBUS_LISTENER_DEFINE(trigger, trigger_callback);

static int trigger_init(void)
{
__ASSERT((dk_buttons_init(button_handler) == 0), "Task watchdog init failure");
__ASSERT((dk_buttons_init(button_handler) == 0), "dk_buttons_init failure");

return 0;
}
Expand Down

0 comments on commit 0b124bd

Please sign in to comment.