diff options
author | Jim Meyering <jim@meyering.net> | 2002-04-22 09:42:00 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-04-22 09:42:00 +0000 |
commit | d3de1d0186a6828dd7bb50cd9c01850d224cc072 (patch) | |
tree | 6589138f97c5c681998d3dba92f4913552a35718 /src | |
parent | a15c26266f129f5ea2774bf5250bebb42cbfb0c9 (diff) | |
download | coreutils-d3de1d0186a6828dd7bb50cd9c01850d224cc072.tar.xz |
(rm): Call exit with EXIT_FAILURE, not `1'.
Diffstat (limited to 'src')
-rw-r--r-- | src/remove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remove.c b/src/remove.c index 53501b707..8ddcd24fa 100644 --- a/src/remove.c +++ b/src/remove.c @@ -878,7 +878,7 @@ The following two directories have the same inode number:\n")); if (yesno ()) return RM_ERROR; } - exit (1); + exit (EXIT_FAILURE); } /* Put this directory in the active_dir_map. */ |