1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +02:00

Add missing call to change callback when setting option with integer value, using a string

This commit is contained in:
Sebastien Helleu
2009-03-15 01:14:16 +01:00
parent 4608b82e41
commit 86ff3f775c
+1 -1
View File
@@ -1078,7 +1078,7 @@ config_file_option_set (struct t_config_option *option, const char *value,
option->value = malloc (sizeof (int));
if (option->value)
{
CONFIG_INTEGER(option) = 0;
CONFIG_INTEGER(option) = -1;
if (option->string_values)
{
value_int = -1;