From 1af4fd3a542a684968d17381eb2cbd529f5ab227 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 8 Apr 2004 21:26:28 +0000 Subject: [PATCH] (dd_copy): Mark two diagnostics for translations. --- src/dd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dd.c b/src/dd.c index 8d4d0766cd..8b3b67f89f 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; } -- 2.47.2