diff options
author | 2020-02-21 19:53:39 +0000 | |
---|---|---|
committer | 2020-02-21 19:53:39 +0000 | |
commit | 096ffb92375e2af5efeaa17b92a7f59d1e661b33 (patch) | |
tree | 85c90efeb3a940d783e6343810fec5eb3d20b797 | |
parent | Support devaliases for vnet (diff) | |
download | wireguard-openbsd-096ffb92375e2af5efeaa17b92a7f59d1e661b33.tar.xz wireguard-openbsd-096ffb92375e2af5efeaa17b92a7f59d1e661b33.zip |
set function parameter list to void
ok millert florian
-rw-r--r-- | usr.bin/dig/dighost.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/dig/dighost.c b/usr.bin/dig/dighost.c index e0f237a2299..5814086135a 100644 --- a/usr.bin/dig/dighost.c +++ b/usr.bin/dig/dighost.c @@ -14,7 +14,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: dighost.c,v 1.13 2020/02/21 07:44:50 florian Exp $ */ +/* $Id: dighost.c,v 1.14 2020/02/21 19:53:39 jung Exp $ */ /*! \file * \note @@ -1930,7 +1930,7 @@ compute_cookie(unsigned char *clientcookie, size_t len) { #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0])) static void -populate_root_hints() +populate_root_hints(void) { dig_server_t *newsrv; size_t i; |