diff options
Diffstat (limited to 'src/common/command.c')
-rw-r--r-- | src/common/command.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/command.c b/src/common/command.c index c8396c76a..10a9eecd0 100644 --- a/src/common/command.c +++ b/src/common/command.c @@ -1026,8 +1026,12 @@ weechat_cmd_perl (int argc, char **argv) gui_printf (NULL, _("WeeChat was build without Perl support.\n" "Please rebuild WeeChat with " - "\"--enable-perl\" option for ./configure script\n"); + "\"--enable-perl\" option for ./configure script\n")); + /* make gcc happy */ + (void) argc; + (void) argv; #endif + return 0; } |