Problem: Compiler warnings with 64 bit compiler.
Solution: Add type casts. (Mike Williams)
if ((done == FAIL || (flags & DIP_ALL)) && (flags & DIP_START))
{
- len = STRLEN(start_dir) + STRLEN(name);
+ len = (int)(STRLEN(start_dir) + STRLEN(name));
s = alloc(len);
if (s == NULL)
return FAIL;
if ((done == FAIL || (flags & DIP_ALL)) && (flags & DIP_OPT))
{
- len = STRLEN(opt_dir) + STRLEN(name);
+ len = (int)(STRLEN(opt_dir) + STRLEN(name));
s = alloc(len);
if (s == NULL)
return FAIL;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1587,
/**/
1586,
/**/