mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 05:00:00 -04:00
Fix 'error: ‘%s’ directive argument is null [-Werror=format-overflow=]' in assertions.c
This commit is contained in:
parent
9427028b78
commit
f4260dc0c5
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ isc_assertion_typetotext(isc_assertiontype_t type) {
|
|||
result = "INVARIANT";
|
||||
break;
|
||||
default:
|
||||
result = NULL;
|
||||
result = "UNKNOWN";
|
||||
}
|
||||
return (result);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue