summaryrefslogtreecommitdiff
path: root/doc/it
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2011-03-15 16:19:09 +0100
committerSebastien Helleu <flashcode@flashtux.org>2011-03-15 16:19:09 +0100
commitdd76010e085aea8522bb77134d670cc9a8d4fb8b (patch)
treee6ea357a66a50866bed72940ac5e7149c0ac22b7 /doc/it
parenta47da825faa0cb0f15593bb50ca841ecca9fa0f2 (diff)
downloadweechat-dd76010e085aea8522bb77134d670cc9a8d4fb8b.zip
Fix return value of callback for hashtable_map in plugin API reference
Diffstat (limited to 'doc/it')
-rw-r--r--doc/it/weechat_plugin_api.it.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt
index 501447575..c7e94b5a4 100644
--- a/doc/it/weechat_plugin_api.it.txt
+++ b/doc/it/weechat_plugin_api.it.txt
@@ -3146,10 +3146,10 @@ Prototipo:
[source,C]
----------------------------------------
void hashtable_map (struct t_hashlist *hashlist,
- int (*callback_map)(void *data,
- struct t_hashtable *hashtable,
- const void *key,
- const void *value),
+ void (*callback_map)(void *data,
+ struct t_hashtable *hashtable,
+ const void *key,
+ const void *value),
void *callback_map_data);
----------------------------------------