From 1a4136c4ac0604efd55409db322af9e430d80327 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 17 Feb 2021 15:50:34 +0100 Subject: [PATCH] PreprocessorTest: Convert dbgprintf() => dbgln() --- Userland/Utilities/PreprocessorTest.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Userland/Utilities/PreprocessorTest.cpp b/Userland/Utilities/PreprocessorTest.cpp index 1b9eb809d71..77bd45a8281 100644 --- a/Userland/Utilities/PreprocessorTest.cpp +++ b/Userland/Utilities/PreprocessorTest.cpp @@ -24,7 +24,6 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "AK/Forward.h" #include #include @@ -37,5 +36,5 @@ int main(int, char**) } auto content = file->read_all(); Cpp::Preprocessor cpp(StringView { content }); - dbgprintf("%s\n", cpp.process().characters()); + dbgln("{}", cpp.process()); }