From ea1fef69add040b9e5b1de6e9238eda4576ccd3f Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 10 Jul 2007 14:24:58 -0400 Subject: Remove gettext calls from all PM_LOG_DEBUG messages There is no real reason to burden our translators with these messages, as anyone helping to debug these will probably want them in English. Signed-off-by: Dan McGee --- lib/libalpm/md5driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalpm/md5driver.c') diff --git a/lib/libalpm/md5driver.c b/lib/libalpm/md5driver.c index e2821bf0..caeddc14 100644 --- a/lib/libalpm/md5driver.c +++ b/lib/libalpm/md5driver.c @@ -84,7 +84,7 @@ char* _alpm_MDFile(char *filename) strncat(ret, hex, 2); } - _alpm_log(PM_LOG_DEBUG, _("md5(%s) = %s"), filename, ret); + _alpm_log(PM_LOG_DEBUG, "md5(%s) = %s", filename, ret); return(ret); } return(NULL); -- cgit v1.2.3-24-g4f1b