summaryrefslogtreecommitdiff
path: root/src/dd.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-04-08 21:26:28 +0000
committerJim Meyering <jim@meyering.net>2004-04-08 21:26:28 +0000
commit1af4fd3a542a684968d17381eb2cbd529f5ab227 (patch)
tree729e94e400f924baf5e6a13382f50f73c411c3b8 /src/dd.c
parenta61bca91eb33f5d61c67dfcdc83f78b930ca4856 (diff)
downloadcoreutils-1af4fd3a542a684968d17381eb2cbd529f5ab227.tar.xz
(dd_copy): Mark two diagnostics for translations.
Diffstat (limited to 'src/dd.c')
-rw-r--r--src/dd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dd.c b/src/dd.c
index 8d4d0766c..8b3b67f89 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -1235,7 +1235,7 @@ dd_copy (void)
{
if (errno != ENOSYS && errno != EINVAL)
{
- error (0, errno, "fdatasync %s", quote (output_file));
+ error (0, errno, _("fdatasync failed for %s"), quote (output_file));
exit_status = EXIT_FAILURE;
}
conversions_mask |= C_FSYNC;
@@ -1245,7 +1245,7 @@ dd_copy (void)
while (fsync (STDOUT_FILENO) != 0)
if (errno != EINTR)
{
- error (0, errno, "fsync %s", quote (output_file));
+ error (0, errno, _("fsync failed for %s"), quote (output_file));
return EXIT_FAILURE;
}