diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-07-03 00:28:18 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-03 00:28:18 -0400 |
commit | e9e15c687c5ebdf64f2f0679f5a21b41062bc210 (patch) | |
tree | 53a11b091a118adb696da91d134ee91f7be8ec0e /libc/misc | |
parent | 14276f18072accb6ad36e8d784e44ee1e1a29c56 (diff) | |
parent | eac5e6eee91332c3c98f4c5a3ee2d55ec1723d81 (diff) |
Merge branch 'master' of git://uclibc.org/uClibc
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/wchar/wchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/wchar/wchar.c b/libc/misc/wchar/wchar.c index 1ca4600b4..099ac3935 100644 --- a/libc/misc/wchar/wchar.c +++ b/libc/misc/wchar/wchar.c @@ -1679,7 +1679,7 @@ int main(int argc, char **argv) goto USAGE; } if ((ic = iconv_open(opts[0],opts[1])) == ((iconv_t)(-1))) { - error_msg( "unsupported codeset in %s -> %s conversion\n", opts[0], opts[1]); + error_msg( "unsupported codeset in %s -> %s conversion\n", opts[1], opts[0]); } if (opts[3]) { /* -c */ ((_UC_iconv_t *) ic)->skip_invalid_input = 1; |