summaryrefslogtreecommitdiff
path: root/src/tac.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-07-11 10:34:08 +0000
committerJim Meyering <jim@meyering.net>2003-07-11 10:34:08 +0000
commit4927015380df65f21ff69e0c9f0fe154a9e1ae8b (patch)
tree9c017d4aa397eebf5e2ffbd1d963d6b87a90c37d /src/tac.c
parente96ddb3907af0ef7a79ef0dcd76fcef50dc939ee (diff)
downloadcoreutils-4927015380df65f21ff69e0c9f0fe154a9e1ae8b.tar.xz
(tac_seekable): Enclose diagnostic in _(...).
Diffstat (limited to 'src/tac.c')
-rw-r--r--src/tac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tac.c b/src/tac.c
index 25fc637de..7a366ec6f 100644
--- a/src/tac.c
+++ b/src/tac.c
@@ -1,5 +1,5 @@
/* tac - concatenate and print files in reverse
- Copyright (C) 1988-1991, 1995-2002 Free Software Foundation, Inc.
+ Copyright (C) 1988-1991, 1995-2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -227,7 +227,7 @@ tac_seekable (int input_fd, const char *file)
in the input file. */
if (lseek (input_fd, file_pos, SEEK_SET) < 0)
- error (0, errno, "%s: seek failed", file);
+ error (0, errno, _("%s: seek failed"), file);
if (safe_read (input_fd, G_buffer, saved_record_size) != saved_record_size)
{