Skip to content

Commit 56178db

Browse files
committed
Fix for CONC-726:
The callback function declaration for parameter callbacks should be bool instead of bool * (typo).
1 parent 858a3e3 commit 56178db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/mariadb_stmt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ typedef struct st_mysql_error_info
154154

155155
typedef int (*mysql_stmt_fetch_row_func)(MYSQL_STMT *stmt, unsigned char **row);
156156
typedef void (*ps_result_callback)(void *data, unsigned int column, unsigned char **row);
157-
typedef my_bool *(*ps_param_callback)(void *data, MYSQL_BIND *bind, unsigned int row_nr);
157+
typedef my_bool (*ps_param_callback)(void *data, MYSQL_BIND *bind, unsigned int row_nr);
158158

159159
struct st_mysql_stmt
160160
{

0 commit comments

Comments
 (0)