mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-28 12:31:29 -05:00
Add missing void in named_config_getdefault() definition
The named_config_getdefault() was missing void in the function definition. This broke clang-15 that didn't match the declaration that had the void in the argument with the definition that hadn't.
This commit is contained in:
parent
bef3c76b51
commit
79b045d03d
1 changed files with 1 additions and 1 deletions
|
|
@ -336,7 +336,7 @@ named_config_parsedefaults(cfg_parser_t *parser, cfg_obj_t **conf) {
|
|||
}
|
||||
|
||||
const char *
|
||||
named_config_getdefault() {
|
||||
named_config_getdefault(void) {
|
||||
return (defaultconf);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue