diff options
author | Linus Groh <mail@linusgroh.de> | 2021-05-31 15:43:25 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-01 21:30:16 +0100 |
commit | f5c35fccca3394ae54647d89a160d599f4a74f04 (patch) | |
tree | 5daf1ac703d28877439d0de00bcd54091cd02e5e /Userland/Utilities/env.cpp | |
parent | 4f1889c2cb5273800499550082af48df7e8c022f (diff) | |
download | serenity-f5c35fccca3394ae54647d89a160d599f4a74f04.zip |
Userland: Replace most printf-style APIs with AK::Format APIs :^)
Diffstat (limited to 'Userland/Utilities/env.cpp')
-rw-r--r-- | Userland/Utilities/env.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |