diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-13 20:48:04 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-13 20:48:04 +0100 |
commit | 88adc5d703a9b8b74dde76f106bb80fc1320dcca (patch) | |
tree | fb07d70f8a727c3fc1fa4ae0eaf3fee7ad115dae /doc/fr/weechat_plugin_api.fr.adoc | |
parent | b2d9b2f0ba24f5c563135a415218f7b674df278b (diff) | |
download | weechat-88adc5d703a9b8b74dde76f106bb80fc1320dcca.zip |
doc: add missing variable "pointer" to make C compiler really happy (plugin API reference)
Diffstat (limited to 'doc/fr/weechat_plugin_api.fr.adoc')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.adoc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index b07bc4587..2371a1aaa 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -197,6 +197,7 @@ commande_double_cb (const void *pointer, void *data, int argc, char **argv, char **argv_eol) { /* pour que le compilateur C soit content */ + (void) pointer; (void) data; (void) buffer; (void) argv; |