2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

fixed lines > 79 columns wide

This commit is contained in:
David Lawrence
2000-05-24 05:10:00 +00:00
parent e38d22f566
commit ed019cabc1
53 changed files with 323 additions and 205 deletions

View File

@@ -99,10 +99,10 @@ isc_symtab_destroy(isc_symtab_t **symtabp) {
for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) {
nelt = NEXT(elt, link);
if (symtab->undefine_action != NULL)
(symtab->undefine_action)(elt->key,
elt->type,
elt->value,
symtab->undefine_arg);
(symtab->undefine_action)(elt->key,
elt->type,
elt->value,
symtab->undefine_arg);
isc_mem_put(symtab->mctx, elt, sizeof *elt);
}
}