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)
      |                  ~~~~~~~~~~~~^~~~
This commit is contained in:
nhmall
2024-10-19 08:02:03 -04:00
parent 945ccff1ff
commit 5eefeaf009

View File

@@ -664,6 +664,8 @@ execplinehandler(const char *line)
}
#else
use_pline_handler = FALSE;
nhUse(args);
nhUse(line);
#endif
}