Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mktemp.c')
-rw-r--r--mktemp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mktemp.c b/mktemp.c
index 62ca870c5..2d53cc2a4 100644
--- a/mktemp.c
+++ b/mktemp.c
@@ -31,7 +31,7 @@ extern int mktemp_main(int argc, char **argv)
if (argc != 2 && (argc != 3 || strcmp(argv[1], "-q")))
usage(mktemp_usage);
if(mkstemp(argv[argc-1]) < 0)
- exit(FALSE);
+ return EXIT_FAILURE;
(void) puts(argv[argc-1]);
- return(TRUE);
+ return EXIT_SUCCESS;
}