Problem: CI build failure.
Solution: Include vim.h as ../vim.h. Fix compiler warning.
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 378,
/**/
377,
/**/
long bsize;
} bdiffparam_t;
-#include "vim.h"
+#include "../vim.h"
#define xdl_malloc(x) lalloc((x), TRUE)
#define xdl_free(ptr) vim_free(ptr)
*/
static struct entry *find_longest_common_sequence(struct hashmap *map)
{
- struct entry **sequence = xdl_malloc(map->nr * sizeof(struct entry *));
+ struct entry **sequence = (struct entry **)xdl_malloc(map->nr * sizeof(struct entry *));
int longest = 0, i;
struct entry *entry;