From b68e34cc2e0b5e20d79f1fb3e002ab398ec401d6 Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Sun, 7 Feb 2021 15:31:13 +0330 Subject: [PATCH] UserspaceEmulator: Use vdbgln() instead of dbgln() when reporting This will avoid conflict with the upcoming compiletime checks. --- Userland/DevTools/UserspaceEmulator/Report.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/DevTools/UserspaceEmulator/Report.h b/Userland/DevTools/UserspaceEmulator/Report.h index 97dcf97537..96face8914 100644 --- a/Userland/DevTools/UserspaceEmulator/Report.h +++ b/Userland/DevTools/UserspaceEmulator/Report.h @@ -34,7 +34,7 @@ template void reportln(const StringView& format, Ts... args) { if (g_report_to_debug) - dbgln(format, args...); + AK::vdbgln(format, AK::VariadicFormatParams { args... }); else warnln(format, args...); }