summaryrefslogtreecommitdiff
path: root/doc/it
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-08-02 16:47:59 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-08-02 16:53:12 +0200
commitcf3e0ccbfd0547473c53c2f465e099972e87cc4d (patch)
tree0e64d4cd23ad6f2e139a7d8428b761b7c70a8f5f /doc/it
parent8a93906beb0b8932c2bddf8fa1a66a53961167cf (diff)
downloadweechat-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.asciidoc4
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));