]> git.saurik.com Git - bison.git/commitdiff
(GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Oct 2002 05:46:42 +0000 (05:46 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Oct 2002 05:46:42 +0000 (05:46 +0000)
src/lalr.h

index 7edbbe8a8f8766b3b9ae1859577288a5a47e8b41..c0ca461ce089eca508d0b2bc8e1fd98e2edb4775 100644 (file)
@@ -55,7 +55,7 @@ void lalr_free PARAMS ((void));
    TO_STATE of the first of them.  */
 
 typedef short goto_number_t;
-# define GOTO_NUMBER_MAX ((goto_number_t) INT_MAX)
+# define GOTO_NUMBER_MAX ((goto_number_t) SHRT_MAX)
 
 extern goto_number_t *goto_map;
 extern state_number_t *from_state;