diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-16 08:50:24 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-16 08:50:24 +0100 |
commit | 7afd013665b12277a7447319c39e203c89fd09f5 (patch) | |
tree | f5fe3bc244b5efc30861043d57a4c9149b58234d /src/plugins/trigger | |
parent | 11f2f5d3e4ef381940527d7af0d5376afcefb2a0 (diff) | |
download | weechat-7afd013665b12277a7447319c39e203c89fd09f5.zip |
trigger: fix build of hashtable in hsignal callback when values have type "string"
Diffstat (limited to 'src/plugins/trigger')
-rw-r--r-- | src/plugins/trigger/trigger-callback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/trigger/trigger-callback.c b/src/plugins/trigger/trigger-callback.c index 00a941b20..6d25805de 100644 --- a/src/plugins/trigger/trigger-callback.c +++ b/src/plugins/trigger/trigger-callback.c @@ -448,7 +448,7 @@ trigger_callback_hsignal_cb (void *data, const char *signal, if (!pointers) goto end; } - else if (strcmp (type_values, "pointer") == 0) + else if (strcmp (type_values, "string") == 0) { extra_vars = weechat_hashtable_dup (hashtable); if (!extra_vars) |