159557
commit 986bb5e29492a927a2ad157505c900f75c97016a
159557
Author: rlar <rlar>
159557
Date:   Sun Feb 28 15:20:31 2016 +0100
159557
159557
    generated code, here `new_size' is of type `int', fix casts accordingly
159557
159557
Index: b/src/flex.skl
159557
===================================================================
159557
--- a/src/flex.skl
159557
+++ b/src/flex.skl
159557
@@ -1782,7 +1782,7 @@ m4_ifdef( [[M4_YY_USES_REJECT]],
159557
 		/* Extend the array by 50%, plus the number we really need. */
159557
 		int new_size = YY_G(yy_n_chars) + number_to_move + (YY_G(yy_n_chars) >> 1);
159557
 		YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc(
159557
-			(void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, new_size M4_YY_CALL_LAST_ARG );
159557
+			(void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size M4_YY_CALL_LAST_ARG );
159557
 		if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
159557
 			YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
159557
 	}