Problem: Compiler warnings on VMS. (Zoltan Arpadffy)
Solution: Pass array itself instead its address. Return a value.
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;
{
/* This function should not return, it causes exit(). Longjump instead. */
LONGJMP(lc_jump_env, 1);
+# ifdef VMS
+ return 0; /* avoid the compiler complains about missing return value */
+# endif
}
# endif
/* This function should not return, it causes exit(). Longjump instead. */
LONGJMP(x_jump_env, 1);
+# ifdef VMS
+ return 0; /* avoid the compiler complains about missing return value */
+# endif
}
#endif
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 358,
/**/
357,
/**/