From: Jim Meyering Date: Tue, 8 Oct 1996 04:37:19 +0000 (+0000) Subject: (usage): Improve diagnostic X-Git-Tag: TEXTUTILS-1_19n~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8573fc6ac9f124720d64e6d8c2e96d49dbc42141;p=platform%2Fupstream%2Fcoreutils.git (usage): Improve diagnostic --- diff --git a/src/install.c b/src/install.c index af2bd21..be5a108 100644 --- a/src/install.c +++ b/src/install.c @@ -520,7 +520,7 @@ strip (char *path) switch (pid) { case -1: - error (1, errno, _("cannot fork")); + error (1, errno, _("fork system call failed")); break; case 0: /* Child. */ execlp ("strip", "strip", path, (char *) NULL);