0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)

This commit is contained in:
Bram Moolenaar
2010-07-27 22:41:43 +02:00
parent 3b95389d45
commit 8765a4ac3a
6 changed files with 29 additions and 22 deletions

View File

@@ -13508,7 +13508,7 @@ find_some_match(argvars, rettv, type)
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
}
}