mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-25 08:07:12 -04:00
silence unused parameter
This commit is contained in:
parent
dd19c1a352
commit
a928b54fa9
1 changed files with 3 additions and 1 deletions
|
|
@ -250,7 +250,9 @@ main(int argc, char **argv) {
|
|||
#include <stdlib.h>
|
||||
|
||||
int
|
||||
main() {
|
||||
main(int argc, char **argv) {
|
||||
UNUSED(argc);
|
||||
UNUSED(argv);
|
||||
fprintf(stderr, "Compiled without Crypto\n");
|
||||
exit(1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue