diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-09-05 18:52:59 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-09-05 18:52:59 +0200 |
commit | ae612a811bc05d43e8df3e96135e7d734ba842b0 (patch) | |
tree | 70508776e9cd9b6767c34f9f17deca74f3f32545 /src/plugins/scripts/perl/weechat-perl.c | |
parent | e43dd396469ce3b2bd6dd598f7720fc5ce179d44 (diff) | |
download | weechat-ae612a811bc05d43e8df3e96135e7d734ba842b0.zip |
Many changes in doc
Diffstat (limited to 'src/plugins/scripts/perl/weechat-perl.c')
-rw-r--r-- | src/plugins/scripts/perl/weechat-perl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/scripts/perl/weechat-perl.c b/src/plugins/scripts/perl/weechat-perl.c index 6f426cd70..c9f5b2635 100644 --- a/src/plugins/scripts/perl/weechat-perl.c +++ b/src/plugins/scripts/perl/weechat-perl.c @@ -375,13 +375,13 @@ weechat_perl_load (const char *filename) * weechat_perl_load_cb: callback for weechat_script_auto_load() function */ -int +void weechat_perl_load_cb (void *data, const char *filename) { /* make C compiler happy */ (void) data; - return weechat_perl_load (filename); + weechat_perl_load (filename); } /* |