diff options
-rw-r--r-- | toys/pwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ int pwd_main(void) { char *pwd = xgetcwd(); - puts(pwd); + xprintf("%s\n", pwd); if (CFG_TOYS_FREE) free(pwd); return 0; |
index : forks/toybox | ||
Toybox with POSIX patches from E5ten |
aboutsummaryrefslogtreecommitdiff |
-rw-r--r-- | toys/pwd.c | 2 |
@@ -9,7 +9,7 @@ int pwd_main(void) { char *pwd = xgetcwd(); - puts(pwd); + xprintf("%s\n", pwd); if (CFG_TOYS_FREE) free(pwd); return 0; |