diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-02 16:47:59 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-02 16:53:12 +0200 |
commit | cf3e0ccbfd0547473c53c2f465e099972e87cc4d (patch) | |
tree | 0e64d4cd23ad6f2e139a7d8428b761b7c70a8f5f /doc/it | |
parent | 8a93906beb0b8932c2bddf8fa1a66a53961167cf (diff) | |
download | weechat-cf3e0ccbfd0547473c53c2f465e099972e87cc4d.zip |
core: fix result of hash function (in hashtables) on 32-bit systems
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/weechat_plugin_api.it.asciidoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/it/weechat_plugin_api.it.asciidoc b/doc/it/weechat_plugin_api.it.asciidoc index 5dfe9a22d..1e9f5a3cd 100644 --- a/doc/it/weechat_plugin_api.it.asciidoc +++ b/doc/it/weechat_plugin_api.it.asciidoc @@ -3440,8 +3440,8 @@ Prototipo: struct t_hashtable *weechat_hashtable_new (int size, const char *type_keys, const char *type_values, - unsigned long (*callback_hash_key)(struct t_hashtable *hashtable, - const void *key), + unsigned long long (*callback_hash_key)(struct t_hashtable *hashtable, + const void *key), int (*callback_keycmp)(struct t_hashtable *hashtable, const void *key1, const void *key2)); |