aboutsummaryrefslogtreecommitdiff
path: root/src/codeconv.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-21 09:07:13 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-21 09:07:13 +0000
commit9d70597a44bbcdc57bc55be754ba739279884e0b (patch)
tree332a14fdbe2282f85bc3f3c1cc1729b033f38603 /src/codeconv.c
parent9e5073da15a5359189724b670e5ed19cb6c4b0cb (diff)
suppress the debug print in codeconv.c.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@28 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/codeconv.c')
-rw-r--r--src/codeconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codeconv.c b/src/codeconv.c
index 0b73d900..0623421c 100644
--- a/src/codeconv.c
+++ b/src/codeconv.c
@@ -1022,7 +1022,7 @@ gchar *conv_iconv_strdup_with_cd(const gchar *inbuf, iconv_t cd)
while ((n_conv = iconv(cd, (ICONV_CONST gchar **)&inbuf_p, &in_left,
&outbuf_p, &out_left)) == (size_t)-1) {
if (EILSEQ == errno) {
- g_print("iconv(): at %d: %s\n", in_size - in_left, g_strerror(errno));
+ //g_print("iconv(): at %d: %s\n", in_size - in_left, g_strerror(errno));
inbuf_p++;
in_left--;
if (out_left == 0) {