aboutsummaryrefslogtreecommitdiff
path: root/coreutils/pwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/pwd.c')
-rw-r--r--coreutils/pwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/pwd.c b/coreutils/pwd.c
index b2d7c0e5f..bd36d627e 100644
--- a/coreutils/pwd.c
+++ b/coreutils/pwd.c
@@ -17,7 +17,7 @@ int pwd_main(int argc, char **argv)
17 17
18 if ((buf = xgetcwd(NULL)) != NULL) { 18 if ((buf = xgetcwd(NULL)) != NULL) {
19 puts(buf); 19 puts(buf);
20 bb_fflush_stdout_and_exit(EXIT_SUCCESS); 20 fflush_stdout_and_exit(EXIT_SUCCESS);
21 } 21 }
22 22
23 return EXIT_FAILURE; 23 return EXIT_FAILURE;