Commit bb387090 authored by Lucas Russo's avatar Lucas Russo

examples/trigger.c: fix trivial debug message typo

parent 84c96215
...@@ -262,7 +262,7 @@ int main (int argc, char *argv []) ...@@ -262,7 +262,7 @@ int main (int argc, char *argv [])
dir = strtoul (dir_str, NULL, 10); dir = strtoul (dir_str, NULL, 10);
bpm_client_err_e err = bpm_set_trigger_dir (bpm_client, service_iface, chan, dir); bpm_client_err_e err = bpm_set_trigger_dir (bpm_client, service_iface, chan, dir);
if (err != BPM_CLIENT_SUCCESS){ if (err != BPM_CLIENT_SUCCESS){
fprintf (stderr, "[client:trigger]: bpm_set_trigger_rcv_sel failed\n"); fprintf (stderr, "[client:trigger]: bpm_set_trigger_dir failed\n");
goto err_bpm_set; goto err_bpm_set;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment