small patch to try to fix a warning with Sun One compiler Daniel

* encoding.c: small patch to try to fix a warning with Sun One compiler
Daniel
diff --git a/encoding.c b/encoding.c
index ffd8541..58cc8c1 100644
--- a/encoding.c
+++ b/encoding.c
@@ -2131,7 +2131,7 @@
 	 */
         if (in->end - in->cur > 0) {
 	    static unsigned char convbuf[32000];
-	    unsigned const char *cur = in->cur;
+	    unsigned const char *cur = (unsigned const char *)in->cur;
 	    int toconv = in->end - in->cur, written = 32000;
 
 	    int ret;