From 636a1f85e89432601c59cdc3239fc867b4adf051 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 19 May 2008 09:29:47 +0000 Subject: - use EXIT_{SUCCESS,FAILURE}. No object-code changes --- coreutils/printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/printf.c') diff --git a/coreutils/printf.c b/coreutils/printf.c index a12f7ca..7c76131 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c @@ -266,7 +266,7 @@ static char **print_formatted(char *format, char **argv) break; case '\\': if (*++f == 'c') - exit(0); + exit(EXIT_SUCCESS); bb_putchar(bb_process_escape_sequence((const char **)&f)); f--; break; -- cgit v1.1