[MPlayer-cvslog] r19555 - trunk/mp_msg.c
reimar
subversion at mplayerhq.hu
Sun Aug 27 10:10:08 CEST 2006
Author: reimar
Date: Sun Aug 27 10:10:07 2006
New Revision: 19555
Modified:
trunk/mp_msg.c
Log:
Mixed up from and to charsets in iconv open failure message.
Patch by Zuxy Meng zuxy.meng at gmail com.
Modified: trunk/mp_msg.c
==============================================================================
--- trunk/mp_msg.c (original)
+++ trunk/mp_msg.c Sun Aug 27 10:10:07 2006
@@ -93,7 +93,7 @@
}
if (msgiconv == (iconv_t)(-1)) {
fprintf(stderr,"iconv: conversion from %s to %s unsupported\n"
- ,mp_msg_charset,MSG_CHARSET);
+ ,MSG_CHARSET,mp_msg_charset);
}else{
memset(tmp2, 0, MSGSIZE_MAX);
while (iconv(msgiconv, &in, &inlen, &out, &outlen) == -1) {
More information about the MPlayer-cvslog
mailing list