mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 09:52:27 -04:00
main has arguments. Get rid of the warnings using (void)argc; and (void)argv; instead.
This commit is contained in:
parent
eaff62e089
commit
da547174e2
1 changed files with 4 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ check_result(isc_result_t result, char *msg)
|
|||
}
|
||||
|
||||
int
|
||||
main()
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
isc_task_t *t1, *t2;
|
||||
isc_sockaddr_t sockaddr;
|
||||
|
|
@ -69,6 +69,9 @@ main()
|
|||
unsigned char namestorage[512];
|
||||
dns_adb_t *adb;
|
||||
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
|
||||
dns_result_register();
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue