diff options
author | unknown <monty@tik.mysql.fi> | 2002-03-05 15:46:30 +0200 |
---|---|---|
committer | unknown <monty@tik.mysql.fi> | 2002-03-05 15:46:30 +0200 |
commit | 326d80ea649ed1dd0d13640b6e95f5c1df1ae458 (patch) | |
tree | c6069be49c4dde6952ca4a60d0897ab7d509c5b3 /sql/sql_yacc.yy | |
parent | 4c164621185c8493de06281ae68ef35f977c13a9 (diff) | |
download | mariadb-git-326d80ea649ed1dd0d13640b6e95f5c1df1ae458.tar.gz |
Update scripts for new POSIX spec
Fix for --enable-local-infile
Portability fix for bison
bdb/dist/s_recover:
Update for new POSIX spec
configure.in:
Fix for --enable-local-infile
libmysql/libmysql.c:
Cleanup
mysql-test/mysql-test-run.sh:
Update for new POSIX spec
scripts/safe_mysqld.sh:
Update for new POSIX spec
sql-bench/server-cfg.sh:
Update for new POSIX spec
sql/sql_yacc.yy:
Portability fix for bison
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 54a03d4a714..0cbf6f45194 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -30,7 +30,7 @@ extern void yyerror(const char*); int yylex(void *yylval); -#define yyoverflow(A,B,C,D,E,F) if (my_yyoverflow((B),(D),(F))) { yyerror((char*) (A)); return 2; } +#define yyoverflow(A,B,C,D,E,F) if (my_yyoverflow((B),(D),(int*) (F))) { yyerror((char*) (A)); return 2; } inline Item *or_or_concat(Item* A, Item* B) { |