diff options
Diffstat (limited to 'lib/libalpm/sha1.c')
-rw-r--r-- | lib/libalpm/sha1.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |