commit | 8765a4ac3a9dfb994ad7051183353ead25cfbb64 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jul 27 22:41:43 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jul 27 22:41:43 2010 +0200 |
tree | 92b7309028f41799a44ef42512802188b4470a07 | |
parent | 3b95389d45bacf90f4ef04a7a7726e5ddc29027a [diff] [blame] |
Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)
diff --git a/src/eval.c b/src/eval.c index ac0ad26..58c89c8 100644 --- a/src/eval.c +++ b/src/eval.c
@@ -13508,7 +13508,7 @@ startcol = (colnr_T)(regmatch.startp[0] + (*mb_ptr2len)(regmatch.startp[0]) - str); #else - startcol = regmatch.startp[0] + 1 - str; + startcol = (colnr_T)(regmatch.startp[0] + 1 - str); #endif } }