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

(cherry picked from commit f4260dc0c5)
This commit is contained in:
Witold Kręcicki
2020-05-06 11:25:30 +02:00
committed by Witold Krecicki
parent 5467970c9e
commit 31897276d9

View File

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