updated for version 7.3.1075
Problem:    Compiler warning for storing a long_u in an int.
Solution:   Declare the number as an int. (Mike Williams)
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c
index ae6281d..5e21db3 100644
--- a/src/regexp_nfa.c
+++ b/src/regexp_nfa.c
@@ -890,7 +890,7 @@
 
 		default:
 		    {
-			long_u	n = 0;
+			int	n = 0;
 			int	cmp = c;
 
 			if (c == '<' || c == '>')