From 91fb00772de41ae2ebbee9b8d7c5205b6789aec1 Mon Sep 17 00:00:00 2001 From: Will Estes Date: Mon, 16 Sep 2002 12:41:40 +0000 Subject: [PATCH] replace yytables_load with yytables_fload as per millaway's other changes --- tests/test-reject/scanner.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-reject/scanner.l b/tests/test-reject/scanner.l index a093ae4..dc439f1 100644 --- a/tests/test-reject/scanner.l +++ b/tests/test-reject/scanner.l @@ -51,8 +51,8 @@ int main ( int argc, char** argv ) if((fp = fopen(argv[1],"r"))== NULL) yy_fatal_error("could not open tables file for reading" YY_CALL_LAST_ARG); - if(yytables_load(fp YY_CALL_LAST_ARG) < 0) - yy_fatal_error("yytables_load returned < 0" YY_CALL_LAST_ARG); + if(yytables_fload(fp YY_CALL_LAST_ARG) < 0) + yy_fatal_error("yytables_fload returned < 0" YY_CALL_LAST_ARG); if(YY_TABLES_VERIFY) exit(0); #endif -- 2.40.0