From f23e1c18a8f78bbac47df3299b6d1241fe00d7ff Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 14 Jun 2005 09:44:54 +0000 Subject: [PATCH] (openat_save_fail): Rename from openat_save_die. (openat_restore_fail): Rename from openat_restore_die. --- lib/openat-die.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/openat-die.c b/lib/openat-die.c index 7247ab2..f7cc15d 100644 --- a/lib/openat-die.c +++ b/lib/openat-die.c @@ -30,20 +30,20 @@ #define N_(msgid) msgid void -openat_save_die (int errno) +openat_save_fail (int errno) { error (exit_failure, errno, _("unable to record current working directory")); /* The `noreturn' attribute cannot be applied to error, since it returns - when its first argument is 0. To help compilers understand the - xalloc_die does not return, call abort. Also, the abort is a + when its first argument is 0. To help compilers understand that this + function does not return, call abort. Also, the abort is a safety feature if exit_failure is 0 (which shouldn't happen). */ abort (); } void -openat_restore_die (int errno) +openat_restore_fail (int errno) { error (exit_failure, errno, _("failed to return to initial working directory")); -- 2.7.4