aboutsummaryrefslogtreecommitdiff
path: root/ex.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-10-09 18:54:41 +0000
committerOmar Polo <op@omarpolo.com>2021-10-09 18:54:41 +0000
commit5eb3fc905f5e3bd2f2d586fb1e0ceda879500b3e (patch)
tree846526cf50242dea26016f337a717dc9ad87f9f3 /ex.c
parentc6bcc919c658676844c857d59388d4108fcc7b8f (diff)
don't work around a missing -Wno-unused-parameter
It's been there for a long time, and it's frankly annoying to pretend to use parameters. Most of the time, they're there to satisfy an interface and nothings more.
Diffstat (limited to 'ex.c')
-rw-r--r--ex.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ex.c b/ex.c
index d89026a..ad21cd5 100644
--- a/ex.c
+++ b/ex.c
@@ -429,10 +429,6 @@ handle_imsg_quit(struct imsgbuf *ibuf, struct imsg *imsg, size_t datalen)
{
int i;
- (void)ibuf;
- (void)imsg;
- (void)datalen;
-
for (i = 0; i < conf.prefork; ++i) {
imsg_compose(&servibuf[i], IMSG_QUIT, 0, 0, -1, NULL, 0);
imsg_flush(&exibuf);