summaryrefslogtreecommitdiff
path: root/Userland/DevTools/UserspaceEmulator/Report.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/DevTools/UserspaceEmulator/Report.h')
-rw-r--r--Userland/DevTools/UserspaceEmulator/Report.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/UserspaceEmulator/Report.h b/Userland/DevTools/UserspaceEmulator/Report.h
index 7f1aa8ac9a..a14e58d537 100644
--- a/Userland/DevTools/UserspaceEmulator/Report.h
+++ b/Userland/DevTools/UserspaceEmulator/Report.h
@@ -11,7 +11,7 @@
extern bool g_report_to_debug;
template<typename... Ts>
-void reportln(const StringView& format, Ts... args)
+void reportln(StringView format, Ts... args)
{
if (g_report_to_debug) {
AK::VariadicFormatParams variadic_format_params { args... };