summaryrefslogtreecommitdiff
path: root/src/spell.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-12-09 21:34:39 +0000
committerBram Moolenaar <Bram@vim.org>2008-12-09 21:34:39 +0000
commit19c9c76c4d4e4cd6f8fd91f92b672937b3f3371d (patch)
tree132dc34211eae98d290d9e62b178543d3c421747 /src/spell.c
parent67a060e9adaeed3d80822c86c8188c314762ef88 (diff)
downloadvim-git-19c9c76c4d4e4cd6f8fd91f92b672937b3f3371d.tar.gz
updated for version 7.2-069v7.2.069
Diffstat (limited to 'src/spell.c')
-rw-r--r--src/spell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c
index cc733b3bb..b89ef8365 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -1765,7 +1765,7 @@ match_checkcompoundpattern(ptr, wlen, gap)
/* 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;
}