From ccffc105b0b361150666f97b59ac72cff8466e9b Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Mon, 12 Jun 2017 12:50:43 +0200 Subject: Use defines for exit code values Make the usage of exit consist. That is use the pre defined exit values. Signed-off-by: Daniel Wagner Signed-off-by: David Oberhollenzer --- nand-utils/nftl_format.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nand-utils/nftl_format.c') diff --git a/nand-utils/nftl_format.c b/nand-utils/nftl_format.c index a329c59..ea8199d 100644 --- a/nand-utils/nftl_format.c +++ b/nand-utils/nftl_format.c @@ -234,7 +234,7 @@ int main(int argc, char **argv) int idx = 0; if (argc < 2) - usage(1); + usage(EXIT_FAILURE); nftl = "NFTL"; @@ -249,13 +249,13 @@ int main(int argc, char **argv) break; case 'h': case '?': - usage(0); + usage(EXIT_SUCCESS); break; case 'V': display_version(); break; default: - usage(1); + usage(EXIT_FAILURE); break; } } -- cgit v1.2.3