aboutsummaryrefslogtreecommitdiff
path: root/src/ldif.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-09-20 02:43:17 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-09-20 02:43:17 +0000
commitd73e3bb581deb1e1b9645780785bc78af3796b41 (patch)
treec49441039830be24c2ef627461a9ae69dd5f9720 /src/ldif.c
parentc2dbb1ce00b5ccdc7c6a3aa8d880d88658446654 (diff)
removed all warnings output with -Wall.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1910 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/ldif.c')
-rw-r--r--src/ldif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ldif.c b/src/ldif.c
index 21c74478..805b1a54 100644
--- a/src/ldif.c
+++ b/src/ldif.c
@@ -628,7 +628,7 @@ static gchar *ldif_conv_base64( gchar *buf ) {
gint len;
outbuf = g_malloc(strlen(buf) + 1);
- len = base64_decode(outbuf, buf, -1);
+ len = base64_decode((guchar *)outbuf, buf, -1);
outbuf[len] = '\0';
if (g_utf8_validate(outbuf, -1, NULL))
return outbuf;