From: Jim Meyering <[email protected]>
---
src/split.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/split.c b/src/split.c
index 59473c5..4aa7d79 100644
--- a/src/split.c
+++ b/src/split.c
@@ -292,7 +292,8 @@ create (const char *name)
if (shell_prog == NULL)
shell_prog = "/bin/sh";
if (setenv ("FILE", name, 1) != 0)
- error (EXIT_FAILURE, errno, "failed to set FILE environment variable");
+ error (EXIT_FAILURE, errno,
+ _("failed to set FILE environment variable"));
if (verbose)
fprintf (stdout, _("executing with FILE=%s\n"), quote (name));
if (pipe (fd_pair) != 0)
--
1.7.5.134.g1c08b