Fix 'error: ‘%s’ directive argument is null [-Werror=format-overflow=]' in assertions.c

This commit is contained in:
Witold Kręcicki 2020-05-06 11:25:30 +02:00
parent 9427028b78
commit f4260dc0c5

View file

@ -82,7 +82,7 @@ isc_assertion_typetotext(isc_assertiontype_t type) {
result = "INVARIANT";
break;
default:
result = NULL;
result = "UNKNOWN";
}
return (result);
}