Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / coreutils / chroot.c
index f0a298104fc6d39c3806da358fcc6029467bd3cc..f279af18d96b2ea226e783a35235cbbfa889cdc2 100644 (file)
@@ -54,7 +54,7 @@ int chroot_main(int argc, char **argv)
                execlp(prog, prog, NULL);
 #else
                shell_main(argc, argv);
-               exit (0);
+               return EXIT_SUCCESS;
 #endif
        }
        fatalError("cannot execute %s: %s\n", prog, strerror(errno));