More accurate log message from do_conversion()

* src/iri.c (do_conversion): More accurate log message
This commit is contained in:
Sergio Gelato 2016-04-17 15:28:48 +02:00 committed by Tim Rühsen
parent 268163444d
commit 96ab9cad88

View File

@ -129,8 +129,8 @@ do_conversion (const char *tocode, const char *fromcode, char const *in_org, siz
cd = iconv_open (tocode, fromcode);
if (cd == (iconv_t)(-1))
{
logprintf (LOG_VERBOSE, _("Conversion from %s to UTF-8 isn't supported\n"),
quote (opt.locale));
logprintf (LOG_VERBOSE, _("Conversion from %s to %s isn't supported\n"),
quote (fromcode), quote (tocode));
*out = NULL;
return false;
}