summaryrefslogtreecommitdiff
path: root/build/parsePrep.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2020-08-27 14:23:31 +0300
committerPanu Matilainen <pmatilai@redhat.com>2020-08-27 14:54:54 +0300
commita2e072d45243bcfaa7797514bb40c85e9b8fa74c (patch)
treed35b235c088aa740a13c68f9b90989d2be438a39 /build/parsePrep.c
parentb17f702d4faf3831a1b8c2e5446b83b62cef2bab (diff)
downloadrpm-a2e072d45243bcfaa7797514bb40c85e9b8fa74c.tar.gz
Stop untranslatable format strings from being translated
There's nothing to translate in "%s: %s" and the like, don't bother people with this stuff.
Diffstat (limited to 'build/parsePrep.c')
-rw-r--r--build/parsePrep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/parsePrep.c b/build/parsePrep.c
index ff036995f..d92e5cdf0 100644
--- a/build/parsePrep.c
+++ b/build/parsePrep.c
@@ -451,7 +451,7 @@ static rpmRC doPatchMacro(rpmSpec spec, const char *line)
}
if (c < -1) {
- rpmlog(RPMLOG_ERR, _("%s: %s: %s\n"), poptStrerror(c),
+ rpmlog(RPMLOG_ERR, "%s: %s: %s\n", poptStrerror(c),
poptBadOption(optCon, POPT_BADOPTION_NOALIAS), line);
goto exit;
}