updated for version 7.2-069
diff --git a/src/spell.c b/src/spell.c
index cc733b3..b89ef83 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -1765,7 +1765,7 @@
 	    /* Second part matches at start of following compound word, now
 	     * check if first part matches at end of previous word. */
 	    p = ((char_u **)gap->ga_data)[i];
-	    len = STRLEN(p);
+	    len = (int)STRLEN(p);
 	    if (len <= wlen && STRNCMP(ptr + wlen - len, p, len) == 0)
 		return TRUE;
 	}