Oops - don't attempt to print the sought kernel function name when its empty

svn-id: r44462
This commit is contained in:
Filippos Karapetis 2009-09-29 14:28:37 +00:00
parent f9296a6445
commit 2c2cf614c8

View File

@ -594,7 +594,7 @@ void Kernel::mapFunctions() {
if (sought_name.empty()) {
// No name was given -> must be an unknown opcode
warning("Kernel function %s[%x] unknown", sought_name.c_str(), functnr);
warning("Kernel function %x unknown", functnr);
_kernelFuncs[functnr].isDummy = true;
continue;
}