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
 	    }
 	}