1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 01:33:12 +02:00

trigger: fix build of hashtable in hsignal callback when values have type "string"

This commit is contained in:
Sebastien Helleu
2014-03-16 08:50:24 +01:00
parent 11f2f5d3e4
commit 7afd013665
+1 -1
View File
@@ -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)