From c710a3a89802469cc0c3bb207fe3dbffec337ec4 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Sun, 27 Jul 2014 15:41:49 -0500 Subject: [PATCH] dbStatic/dbLexRoutines.c fix error message --- src/ioc/dbStatic/dbLexRoutines.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ioc/dbStatic/dbLexRoutines.c b/src/ioc/dbStatic/dbLexRoutines.c index 2ba4c92e8..cf2406556 100644 --- a/src/ioc/dbStatic/dbLexRoutines.c +++ b/src/ioc/dbStatic/dbLexRoutines.c @@ -645,7 +645,8 @@ static void dbRecordtypeBody(void) fprintf(stderr,"recordtype(%s).%s extra not specified\n", pdbRecordType->name,pdbFldDes->name); } - if(ellCount(&tempList)) yyerrorAbort("dbMenuBody: tempList not empty"); + if (ellCount(&tempList)) + yyerrorAbort("dbRecordtypeBody: tempList not empty"); pdbRecordType->no_prompt = no_prompt; pdbRecordType->no_links = no_links; pdbRecordType->link_ind = dbCalloc(no_links,sizeof(short));