From 5eefeaf0099f4d587f1edff5afdf5ddfe85e34d7 Mon Sep 17 00:00:00 2001 From: nhmall Date: Sat, 19 Oct 2024 08:02:03 -0400 Subject: [PATCH] msghandler follow-up: msdos cross-compile warnings pline.c: In function 'execplinehandler': pline.c:631:17: warning: unused variable 'args' [-Wunused-variable] 631 | const char *args[3]; | ^~~~ pline.c:626:30: warning: unused parameter 'line' [-Wunused-parameter] 626 | execplinehandler(const char *line) | ~~~~~~~~~~~~^~~~ --- src/pline.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pline.c b/src/pline.c index 879f48003..22dddcf34 100644 --- a/src/pline.c +++ b/src/pline.c @@ -664,6 +664,8 @@ execplinehandler(const char *line) } #else use_pline_handler = FALSE; + nhUse(args); + nhUse(line); #endif }