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/sha1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalpm/sha1.c') diff --git a/lib/libalpm/sha1.c b/lib/libalpm/sha1.c index 1adf067b..a164a893 100644 --- a/lib/libalpm/sha1.c +++ b/lib/libalpm/sha1.c @@ -421,7 +421,7 @@ char* _alpm_SHAFile(char *filename) { snprintf(hex, 3, "%02x", digest[i]); strncat(ret, hex, 2); } - _alpm_log(PM_LOG_DEBUG, _("sha1(%s) = %s"), filename, ret); + _alpm_log(PM_LOG_DEBUG, "sha1(%s) = %s", filename, ret); return(ret); } -- cgit v1.2.3-54-g00ecf