summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/chcon.c2
-rw-r--r--src/chmod.c2
-rw-r--r--src/chown-core.c2
-rw-r--r--src/du.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/chcon.c b/src/chcon.c
index 02f190dae..5d0a86ba2 100644
--- a/src/chcon.c
+++ b/src/chcon.c
@@ -257,7 +257,7 @@ process_file (FTS *fts, FTSENT *ent)
break;
case FTS_ERR:
- error (0, ent->fts_errno, _("%s"), quote (file_full_name));
+ error (0, ent->fts_errno, "%s", quote (file_full_name));
ok = false;
break;
diff --git a/src/chmod.c b/src/chmod.c
index 83f6783df..61a3807a8 100644
--- a/src/chmod.c
+++ b/src/chmod.c
@@ -212,7 +212,7 @@ process_file (FTS *fts, FTSENT *ent)
case FTS_ERR:
if (! force_silent)
- error (0, ent->fts_errno, _("%s"), quote (file_full_name));
+ error (0, ent->fts_errno, "%s", quote (file_full_name));
ok = false;
break;
diff --git a/src/chown-core.c b/src/chown-core.c
index 22a178ad9..1d3f74ced 100644
--- a/src/chown-core.c
+++ b/src/chown-core.c
@@ -305,7 +305,7 @@ change_file_owner (FTS *fts, FTSENT *ent,
case FTS_ERR:
if (! chopt->force_silent)
- error (0, ent->fts_errno, _("%s"), quote (file_full_name));
+ error (0, ent->fts_errno, "%s", quote (file_full_name));
ok = false;
break;
diff --git a/src/du.c b/src/du.c
index 739be73ea..95c791fba 100644
--- a/src/du.c
+++ b/src/du.c
@@ -426,7 +426,7 @@ process_file (FTS *fts, FTSENT *ent)
case FTS_ERR:
/* if (S_ISDIR (ent->fts_statp->st_mode) && FIXME */
- error (0, ent->fts_errno, _("%s"), quote (file));
+ error (0, ent->fts_errno, "%s", quote (file));
return false;
case FTS_DNR: