From 1c303b00fe3a479021cef5ee48e33d5a65b9d720 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 5 Oct 2002 05:46:42 +0000 Subject: [PATCH] (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX. --- src/lalr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lalr.h b/src/lalr.h index 7edbbe8a..c0ca461c 100644 --- a/src/lalr.h +++ b/src/lalr.h @@ -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; -- 2.47.2