updated for version 7.2.358
Problem:    Compiler warnings on VMS. (Zoltan Arpadffy)
Solution:   Pass array itself instead its address.  Return a value.
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c
index de8f265..f905eaf 100644
--- a/src/gui_gtk_x11.c
+++ b/src/gui_gtk_x11.c
@@ -6190,7 +6190,7 @@
 		int pcc[MAX_MCO];
 
 		/* TODO: use the composing characters */
-		c = utfc_ptr2char_len(p, &pcc, len - (p - s));
+		c = utfc_ptr2char_len(p, pcc, len - (p - s));
 		if (c >= 0x10000)	/* show chars > 0xffff as ? */
 		    c = 0xbf;
 		buf[textlen].byte1 = c >> 8;