diff options
Diffstat (limited to 'Userland/Utilities/run-tests.cpp')
-rw-r--r-- | Userland/Utilities/run-tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/run-tests.cpp b/Userland/Utilities/run-tests.cpp index eefc23b124..9315b99d54 100644 --- a/Userland/Utilities/run-tests.cpp +++ b/Userland/Utilities/run-tests.cpp @@ -326,7 +326,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) .help_string = "Show progress with OSC 9 (true, false)", .long_name = "show-progress", .short_name = 'p', - .accept_value = [&](auto* str) { + .accept_value = [&](StringView str) { if ("true"sv == str) print_progress = true; else if ("false"sv == str) |