1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-11-03 04:17:18 -05:00

Whoops. Fix error message ...

git-svn-id: https://svn.xiph.org/trunk/ezstream@13624 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
moritz 2007-08-25 14:16:07 +00:00
parent 15064493bc
commit 35c07b9516

View File

@ -320,7 +320,7 @@ iconvert(const char *in_str, const char *from, const char *to, int mode)
if ((cd = iconv_open(tocode, from)) == (iconv_t)-1 &&
(cd = iconv_open("", from)) == (iconv_t)-1) {
xfree(tocode);
printf("%s: iconv_open(): %s\n", strerror(errno), __progname);
printf("%s: iconv_open(): %s\n", __progname, strerror(errno));
return (NULL);
}
@ -359,7 +359,7 @@ iconvert(const char *in_str, const char *from, const char *to, int mode)
}
if (iconv_close(cd) == -1) {
printf("%s: iconv_close(): %s\n", strerror(errno), __progname);
printf("%s: iconv_close(): %s\n", __progname, strerror(errno));
xfree(output);
xfree(tocode);
return (NULL);