rename bb_default_error_retval -> xfunc_error_retval

This commit is contained in:
Denis Vlasenko
2006-10-03 20:28:06 +00:00
parent b6332248ca
commit 40920825d5
17 changed files with 19 additions and 19 deletions

View File

@ -31,7 +31,7 @@ static FILE *cmp_xfopen_input(const char * const filename)
return fp;
}
exit(bb_default_error_retval); /* We already output an error message. */
exit(xfunc_error_retval); /* We already output an error message. */
}
static const char fmt_eof[] = "cmp: EOF on %s\n";
@ -52,7 +52,7 @@ int cmp_main(int argc, char **argv)
unsigned opt;
int retval = 0;
bb_default_error_retval = 2; /* 1 is returned if files are different. */
xfunc_error_retval = 2; /* 1 is returned if files are different. */
opt = bb_getopt_ulflags(argc, argv, opt_chars);