1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-05 08:10:15 +02:00

Change exit (0)' to exit (EXIT_SUCCESS)',

`exit (1)' to `exit (EXIT_FAILURE)', and
`usage (1)' to `usage (EXIT_FAILURE)'.
This commit is contained in:
Jim Meyering
2002-08-31 08:52:10 +00:00
parent 7488703199
commit 4006f4e672
69 changed files with 201 additions and 201 deletions
+1 -1
View File
@@ -175,7 +175,7 @@ main (int argc, char **argv)
if (argc == 1)
{
error (0, 0, _("too few arguments"));
usage (1);
usage (EXIT_FAILURE);
}
args = argv + 1;