mirror of
https://github.com/weechat/weechat.git
synced 2026-06-18 17:14:47 +02:00
api: change type of argument object_id in upgrade_new callback from string to integer (in scripts)
This commit is contained in:
@@ -5166,7 +5166,7 @@ weechat_python_api_upgrade_read_cb (const void *pointer, void *data,
|
||||
{
|
||||
struct t_plugin_script *script;
|
||||
void *func_argv[4];
|
||||
char empty_arg[1] = { '\0' }, str_object_id[32];
|
||||
char empty_arg[1] = { '\0' };
|
||||
const char *ptr_function, *ptr_data;
|
||||
int *rc, ret;
|
||||
|
||||
@@ -5175,17 +5175,15 @@ weechat_python_api_upgrade_read_cb (const void *pointer, void *data,
|
||||
|
||||
if (ptr_function && ptr_function[0])
|
||||
{
|
||||
snprintf (str_object_id, sizeof (str_object_id), "%d", object_id);
|
||||
|
||||
func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg;
|
||||
func_argv[1] = (char *)API_PTR2STR(upgrade_file);
|
||||
func_argv[2] = str_object_id;
|
||||
func_argv[2] = &object_id;
|
||||
func_argv[3] = (char *)API_PTR2STR(infolist);
|
||||
|
||||
rc = (int *) weechat_python_exec (script,
|
||||
WEECHAT_SCRIPT_EXEC_INT,
|
||||
ptr_function,
|
||||
"ssss", func_argv);
|
||||
"ssis", func_argv);
|
||||
|
||||
if (!rc)
|
||||
ret = WEECHAT_RC_ERROR;
|
||||
|
||||
Reference in New Issue
Block a user