summaryrefslogtreecommitdiff
path: root/src/paste.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2016-10-16 11:28:39 -0700
committerJim Meyering <meyering@fb.com>2016-10-16 11:28:39 -0700
commitf8b8bbc1b97c9cb7a56aae79451bf87ab7307cd2 (patch)
tree242a08bd45f3e09f33e372618d5ab248ad835e3d /src/paste.c
parent492dcb2eb191b844a2fd5e51db3eed85289bea1f (diff)
downloadcoreutils-f8b8bbc1b97c9cb7a56aae79451bf87ab7307cd2.tar.xz
maint: we use die; remove now-unnecessary uses of abort
* src/expr.c (integer_overflow): Remove an abort-after-die. * src/paste.c (write_error): Likewise. * src/sort.c (badfieldspec): Likewise. * src/tr.c (string2_extend): Likewise. Also remove a few break statements, each after an abort.
Diffstat (limited to 'src/paste.c')
-rw-r--r--src/paste.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/paste.c b/src/paste.c
index d6e4b7548..0cf5d2fc5 100644
--- a/src/paste.c
+++ b/src/paste.c
@@ -161,7 +161,6 @@ static void
write_error (void)
{
die (EXIT_FAILURE, errno, _("write error"));
- abort ();
}
/* Output a single byte, reporting any write errors. */