mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-13 21:09:59 -04:00
Merge branch 'wpk/fix-isc-assertions-c-error' into 'master'
Fix 'error: ‘%s’ directive argument is null [-Werror=format-overflow=]' in assertions.c See merge request isc-projects/bind9!3504
This commit is contained in:
commit
ee72c3f0d5
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