Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / hostid.c
index 47bd8d724815f13c377976d1281a6a688f70615f..35a5859c4e3b59130159638cffe87b71b369a4a7 100644 (file)
--- a/hostid.c
+++ b/hostid.c
@@ -26,5 +26,5 @@
 extern int hostid_main(int argc, char **argv)
 {
        printf("%lx\n", gethostid());
-       return(TRUE);
+       return EXIT_SUCCESS;
 }