updated for version 7.3.1081
Problem:    Compiler warnings on 64-bit Windows.
Solution:   Change variable types. (Mike Williams)
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c
index b6fba27..1dc56a3 100644
--- a/src/regexp_nfa.c
+++ b/src/regexp_nfa.c
@@ -283,7 +283,7 @@
     static int
 realloc_post_list()
 {
-    int   nstate_max = post_end - post_start;
+    int   nstate_max = (int)(post_end - post_start);
     int   new_max = nstate_max + 1000;
     int   *new_start;
     int	  *old_start;