Skip to content

Commit

Permalink
script_helper: fix parameter type for dialog flag parsing macro
Browse files Browse the repository at this point in the history
  • Loading branch information
rvlad-patrascu committed Apr 2, 2019
1 parent 45570f1 commit f038e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/script_helper/script_helper.c
Expand Up @@ -241,7 +241,7 @@ int parse_dlg_flags(modparam_t type, void *val)
input.s = val;
input.len = strlen(val);

create_dialog_flags = parse_create_dlg_flags(input);
create_dialog_flags = parse_create_dlg_flags(&input);

return 1;
}

0 comments on commit f038e5c

Please sign in to comment.