diff options
author | Pádraig Brady <P@draigBrady.com> | 2016-10-15 23:10:35 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2016-10-16 12:23:55 +0100 |
commit | 492dcb2eb191b844a2fd5e51db3eed85289bea1f (patch) | |
tree | 910f93d88891b573520ebd5c812d61ddc7fbeed8 /src/copy.c | |
parent | d035eacfdeba2da0134e606c8a63b2f3c0bd05bb (diff) | |
download | coreutils-492dcb2eb191b844a2fd5e51db3eed85289bea1f.tar.xz |
all: use die() rather than error(EXIT_FAILURE)
die() has the advantage of being apparent to the compiler
that it doesn't return, which will avoid warnings in some cases,
and possibly generate better code.
* cfg.mk (sc_die_EXIT_FAILURE): A new syntax check rule to
catch any new uses of error (CONSTANT, ...);
Diffstat (limited to 'src/copy.c')
-rw-r--r-- | src/copy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/copy.c b/src/copy.c index 8cc5c5b72..422d50efe 100644 --- a/src/copy.c +++ b/src/copy.c @@ -38,6 +38,7 @@ #include "copy.h" #include "cp-hash.h" #include "extent-scan.h" +#include "die.h" #include "error.h" #include "fadvise.h" #include "fcntl--.h" @@ -1762,8 +1763,8 @@ static void restore_default_fscreatecon_or_die (void) { if (setfscreatecon (NULL) != 0) - error (EXIT_FAILURE, errno, - _("failed to restore the default file creation context")); + die (EXIT_FAILURE, errno, + _("failed to restore the default file creation context")); } /* Create a hard link DST_NAME to SRC_NAME, honoring the REPLACE, VERBOSE and |