From a646916e93cbdd4c4fcea21695df0fc34bb0d627 Mon Sep 17 00:00:00 2001 From: anon Date: Mon, 12 Feb 2024 22:20:44 +0100 Subject: [PATCH] header compatibility with C++ --- source/sql-parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sql-parser.h b/source/sql-parser.h index c78c34e..c29e6f1 100644 --- a/source/sql-parser.h +++ b/source/sql-parser.h @@ -80,7 +80,7 @@ extern void sqlp_col_collate(struct psql_state *pstate, const char *collate); extern void sqlp_col_def_str(struct psql_state *pstate, const char *str); extern void sqlp_col_def_num(struct psql_state *pstate, int num); extern void sqlp_col_def_float(struct psql_state *pstate, float num); -extern void sqlp_col_def_bool(struct psql_state *pstate, int bool); +extern void sqlp_col_def_bool(struct psql_state *pstate, int b); extern void sqlp_col_key_pri(struct psql_state *pstate, int n_cols); extern void sqlp_col_key(struct psql_state *pstate, int n_cols); extern void sqlp_col_key_textidx(struct psql_state *pstate, int n_cols);