diff options
| author | Jim Meyering <meyering@redhat.com> | 2012-06-05 22:38:26 +0200 |
|---|---|---|
| committer | Jim Meyering <meyering@redhat.com> | 2012-06-05 22:41:06 +0200 |
| commit | 020851e467071face71df533f99cce971eb9bb38 (patch) | |
| tree | c469a7d9f307bb45acf9fa9be6b0d5911ada723e | |
| parent | head: with --lines=-N (-n-N) reset file pointer on seekable input (diff) | |
| download | coreutils-020851e467071face71df533f99cce971eb9bb38.tar.gz coreutils-020851e467071face71df533f99cce971eb9bb38.zip | |
maint: mark new diagnostic for translation
* src/head.c (elide_tail_lines_seekable): Mark new diagnostic.
I will look at the results of "make syntax-check", I will look...
| -rw-r--r-- | src/head.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/head.c b/src/head.c index 0d5e1b2c6..c13c064c4 100644 --- a/src/head.c +++ b/src/head.c @@ -671,7 +671,7 @@ elide_tail_lines_seekable (const char *pretty_filename, int fd, /* Set file pointer to the byte after what we've output. */ if (lseek (fd, pos + n + 1, SEEK_SET) < 0) { - error (0, errno, "%s: failed to reset file pointer", + error (0, errno, _("%s: failed to reset file pointer"), quote (pretty_filename)); return false; } |
