1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 23:06:38 +02:00

Fix bug with weechat_plugin_end() function, now returns "int" everywhere

This commit is contained in:
Sebastien Helleu
2008-02-25 17:31:04 +01:00
parent 8d23a7b4da
commit 17804ea08b
6 changed files with 16 additions and 5 deletions
+1 -1
View File
@@ -23,7 +23,7 @@
#include "weechat-plugin.h"
typedef int (t_weechat_init_func) (struct t_weechat_plugin *plugin);
typedef void (t_weechat_end_func) (struct t_weechat_plugin *plugin);
typedef int (t_weechat_end_func) (struct t_weechat_plugin *plugin);
extern struct t_weechat_plugin *weechat_plugins;
extern struct t_weechat_plugin *last_weechat_plugin;