Skip to content

Commit

Permalink
Windows build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
9EOR9 committed Jun 15, 2022
1 parent f804069 commit 7523c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmariadb/mariadb_rpl.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ int STDCALL mariadb_rpl_open(MARIADB_RPL *rpl)
p= buffer;
int4store(p, rpl->server_id);
p+= 4;
*p++= len;
*p++= (unsigned char)len;
memcpy(p, rpl->mysql->options.extension->rpl_host, len);
p+= len;

Expand Down

0 comments on commit 7523c27

Please sign in to comment.