From c272386d5dd143fb515a85965ae3762357749e18 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 28 Nov 2004 21:29:16 +0000 Subject: [PATCH] (main): Appease the gods. --- lib/chdir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/chdir.c b/lib/chdir.c index 1e73e1e1ef..56cbb24ce9 100644 --- a/lib/chdir.c +++ b/lib/chdir.c @@ -296,7 +296,7 @@ main (int argc, char *argv[]) if (feof (stdin)) exit (0); - error (EXIT_FAILURE, saved_errno, "reading standard input"); + error (EXIT_FAILURE, saved_errno, _("reading standard input")); } else if (len == 0) exit (0); @@ -305,7 +305,7 @@ main (int argc, char *argv[]) line[len-1] = '\0'; if (rpl_chdir (line) != 0) - error (EXIT_FAILURE, errno, "chdir failed: %s", line); + error (EXIT_FAILURE, errno, _("chdir failed: %s"), line); { /* Using `pwd' here makes sense only if it is a robust implementation, -- 2.47.2