1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

ruby: fix compiler warning on third argument of function weechat_ruby_hash_foreach_cb

This commit is contained in:
Sébastien Helleu
2020-03-22 10:29:53 +01:00
parent c14d5ba004
commit 5ca64fc389
+1 -1
View File
@@ -178,7 +178,7 @@ weechat_ruby_hashtable_to_hash (struct t_hashtable *hashtable)
*/
int
weechat_ruby_hash_foreach_cb (VALUE key, VALUE value, void *arg)
weechat_ruby_hash_foreach_cb (VALUE key, VALUE value, VALUE arg)
{
struct t_hashtable *hashtable;
const char *type_values;