aboutsummaryrefslogtreecommitdiff
path: root/env.c
diff options
context:
space:
mode:
Diffstat (limited to 'env.c')
-rw-r--r--env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/env.c b/env.c
index 626fc1952..8bb690b72 100644
--- a/env.c
+++ b/env.c
@@ -66,7 +66,7 @@ extern int env_main(int argc, char** argv)
66 perror_msg_and_die("%s", *argv); 66 perror_msg_and_die("%s", *argv);
67 } 67 }
68 for (ep = environ; *ep; ep++) 68 for (ep = environ; *ep; ep++)
69 printf("%s\n", *ep); 69 puts(*ep);
70 return 0; 70 return 0;
71} 71}
72 72