AK: Eradicate calls to warn().

This commit is contained in:
asynts 2020-10-25 17:46:16 +01:00 committed by Andreas Kling
commit 1254cbbd0b
Notes: sideshowbarker 2024-07-19 01:43:46 +09:00
9 changed files with 42 additions and 53 deletions

View file

@ -58,7 +58,7 @@ int main(int argc, char** argv)
String filepath = Core::find_executable_in_path(filename);
if (filepath.is_null()) {
warn() << "no " << filename << " in path";
warnln("no {} in path", filename);
return 1;
}