IPCMagicLinter: Add missing format parameter to an error log
This commit is contained in:
parent
442ca4f9b4
commit
eed0c32357
Notes:
sideshowbarker
2024-07-17 16:42:19 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/eed0c32357 Pull-request: https://github.com/SerenityOS/serenity/pull/19823
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
if (!endpoint_name.is_null()) {
|
||||
// Note: If there are three or more endpoints defined in a file, these errors will look a bit wonky.
|
||||
// However, that's fine, because it shouldn't happen in the first place.
|
||||
warnln("Error: Multiple endpoints in file '{}': Found {} and {}", filename, line_endpoint_name);
|
||||
warnln("Error: Multiple endpoints in file '{}': Found {} and {}", filename, endpoint_name, line_endpoint_name);
|
||||
had_errors = true;
|
||||
continue; // next line
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue