From 35c07b9516b18754317579ad9ae1a5520b4d737d Mon Sep 17 00:00:00 2001 From: moritz Date: Sat, 25 Aug 2007 14:16:07 +0000 Subject: [PATCH] Whoops. Fix error message ... git-svn-id: https://svn.xiph.org/trunk/ezstream@13624 0101bb08-14d6-0310-b084-bc0e0c8e3800 --- src/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.c b/src/util.c index 6387d19..0b553dd 100644 --- a/src/util.c +++ b/src/util.c @@ -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);