mirror of
https://github.com/MariaDB/server.git
synced 2026-04-26 10:15:29 +02:00
Fix and reenable Windows compiler warning C4800 (size_t conversion).
This commit is contained in:
parent
859d100d70
commit
9891ee5a2a
24 changed files with 72 additions and 72 deletions
|
|
@ -226,7 +226,7 @@ static int test_plugin_client(MYSQL_PLUGIN_VIO *vio, MYSQL *mysql)
|
|||
return CR_ERROR;
|
||||
/* send the reply to the server */
|
||||
res= vio->write_packet(vio, (const unsigned char *) reply,
|
||||
strlen(reply) + 1);
|
||||
(int)strlen(reply) + 1);
|
||||
|
||||
if (res)
|
||||
return CR_ERROR;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue