diff options
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; } |