summaryrefslogtreecommitdiffstats
path: root/src/indent.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c
index 893ca298c0..8499b81347 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -28,7 +28,7 @@ cin_is_cinword(char_u *line)
int len;
cinw_len = (int)STRLEN(curbuf->b_p_cinw) + 1;
- cinw_buf = alloc((unsigned)cinw_len);
+ cinw_buf = alloc(cinw_len);
if (cinw_buf != NULL)
{
line = skipwhite(line);