Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / pwd.c
diff --git a/pwd.c b/pwd.c
index c9de7778eec0765c75a1da43a1d2e4a553b560b9..54129b1755f015f4761729b9f1afa89c160b47e6 100644 (file)
--- a/pwd.c
+++ b/pwd.c
@@ -34,5 +34,5 @@ extern int pwd_main(int argc, char **argv)
                fatalError("%s\n", strerror(errno));
 
        printf("%s\n", buf);
-       return(TRUE);
+       return EXIT_SUCCESS;
 }