From 74887031996e79df07dae9711f08d80839b31e62 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 30 Aug 2002 23:04:53 +0000 Subject: Change `error (1, ...' to `error (EXIT_FAILURE, ...'. --- src/cp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/cp.c') diff --git a/src/cp.c b/src/cp.c index 676e2fbaa..36a66e059 100644 --- a/src/cp.c +++ b/src/cp.c @@ -968,7 +968,8 @@ main (int argc, char **argv) #ifdef S_ISLNK x.symbolic_link = 1; #else - error (1, 0, _("symbolic links are not supported on this system")); + error (EXIT_FAILURE, 0, + _("symbolic links are not supported on this system")); #endif break; -- cgit v1.2.3-54-g00ecf