aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2024-06-27 21:17:23 +0200
committerFabian Groffen <grobian@gentoo.org>2024-06-27 21:17:23 +0200
commit092dbac3c93d4a5f6fc2e5d496e17a0405c950a7 (patch)
tree5615ba34b47488d2463eac8110d4c492c9e616f8 /qcheck.c
parentqwhich: add -r option to limit search to a repository (diff)
downloadportage-utils-092dbac3c93d4a5f6fc2e5d496e17a0405c950a7.tar.gz
portage-utils-092dbac3c93d4a5f6fc2e5d496e17a0405c950a7.tar.bz2
portage-utils-092dbac3c93d4a5f6fc2e5d496e17a0405c950a7.zip
*: remove i18n/gettext support
This looked very rudimentary, and half, there were no translations, and not all strings were covered. It was never enabled, so dummy for many releases. Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'qcheck.c')
-rw-r--r--qcheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qcheck.c b/qcheck.c
index 7c1fd0e5..b6d56717 100644
--- a/qcheck.c
+++ b/qcheck.c
@@ -55,7 +55,7 @@ static const char * const qcheck_opts_help[] = {
};
#define qcheck_usage(ret) usage(ret, QCHECK_FLAGS, qcheck_long_opts, qcheck_opts_help, NULL, lookup_applet_idx("qcheck"))
-#define qcprintf(fmt, args...) do { if (!state->bad_only) printf(_(fmt), ## args); } while (0)
+#define qcprintf(fmt, args...) do { if (!state->bad_only) printf(fmt, ## args); } while (0)
struct qcheck_opt_state {
array_t *atoms;