aboutsummaryrefslogtreecommitdiff
path: root/contrib/byacc/test/yacc/err_syntax11.tab.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/byacc/test/yacc/err_syntax11.tab.c')
-rw-r--r--contrib/byacc/test/yacc/err_syntax11.tab.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/byacc/test/yacc/err_syntax11.tab.c b/contrib/byacc/test/yacc/err_syntax11.tab.c
index b040573f892c..6f7ae21925ca 100644
--- a/contrib/byacc/test/yacc/err_syntax11.tab.c
+++ b/contrib/byacc/test/yacc/err_syntax11.tab.c
@@ -273,14 +273,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
- if (newss == 0)
+ if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
- if (newvs == 0)
+ if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@@ -314,7 +314,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
- if ((yys = getenv("YYDEBUG")) != 0)
+ if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')