From 21bec6f6fb701340e490422d766e419fcd3bc73b Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Wed, 16 Jun 1999 21:04:30 +0000 Subject: [PATCH] Silence annoying compiler warning --- bin/tests/mempool_test.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/tests/mempool_test.c b/bin/tests/mempool_test.c index 0bac5db333..4c62b8f87a 100644 --- a/bin/tests/mempool_test.c +++ b/bin/tests/mempool_test.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1998, 1999 Internet Software Consortium. + * Copyright (C) 1999 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -37,6 +37,10 @@ main(int argc, char *argv[]) isc_mempool_t *mp1, *mp2; unsigned int i, j; + /* Silence annoying compiler warning. */ + (void)argc; + (void)argv; + mctx = NULL; RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);