summaryrefslogtreecommitdiff
path: root/src/core/hook/wee-hook-command-run.c
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-01-03 20:50:58 +0100
committerSébastien Helleu <flashcode@flashtux.org>2023-01-28 15:13:18 +0100
commit347c3f321466af6a7e057701693e6547b7d47d95 (patch)
tree2c705c5b038638d96690703c14c01d02ea55f576 /src/core/hook/wee-hook-command-run.c
parentdb8d2d43f0d89538169ce9c9481a97c12ef4411e (diff)
downloadweechat-347c3f321466af6a7e057701693e6547b7d47d95.zip
core: move function hook_get_priority_and_name to wee-string.c (issue #1872)
Diffstat (limited to 'src/core/hook/wee-hook-command-run.c')
-rw-r--r--src/core/hook/wee-hook-command-run.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hook/wee-hook-command-run.c b/src/core/hook/wee-hook-command-run.c
index 2bec7d3b9..235ad8f1b 100644
--- a/src/core/hook/wee-hook-command-run.c
+++ b/src/core/hook/wee-hook-command-run.c
@@ -78,7 +78,8 @@ hook_command_run (struct t_weechat_plugin *plugin,
return NULL;
}
- hook_get_priority_and_name (command, &priority, &ptr_command);
+ string_get_priority_and_name (command, &priority, &ptr_command,
+ HOOK_PRIORITY_DEFAULT);
hook_init_data (new_hook, plugin, HOOK_TYPE_COMMAND_RUN, priority,
callback_pointer, callback_data);