From f5c35fccca3394ae54647d89a160d599f4a74f04 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 31 May 2021 15:43:25 +0100 Subject: Userland: Replace most printf-style APIs with AK::Format APIs :^) --- Userland/Utilities/env.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Utilities/env.cpp') diff --git a/Userland/Utilities/env.cpp b/Userland/Utilities/env.cpp index db580193cd..5e07641d83 100644 --- a/Userland/Utilities/env.cpp +++ b/Userland/Utilities/env.cpp @@ -57,7 +57,7 @@ int main(int argc, char** argv) if (new_argv.size() == 0) { for (auto entry = environ; *entry != nullptr; ++entry) - printf("%s\n", *entry); + outln("{}", *entry); return 0; } -- cgit v1.2.3