Skip to content

Commit

Permalink
mysql: is_null and error should be my_bool not bool
Browse files Browse the repository at this point in the history
  • Loading branch information
klali committed Jan 12, 2021
1 parent d468b61 commit 3b3d341
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ check_user_token_mysql(const char *mysql_server,
long unsigned int length;
int int_data;
int row_count;
bool is_null;
bool error;
my_bool is_null;
my_bool error;

if(mysql_library_init(0, NULL, NULL)){
if(verbose){
Expand Down

0 comments on commit 3b3d341

Please sign in to comment.