1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-08 14:02:17 +03:00

Fix error on 32-bit systems

Problem was introduced with fix for CONC-668.
This commit is contained in:
Georg Richter
2023-10-21 19:43:42 +02:00
parent 642bc31ed2
commit 8320f0d54d
2 changed files with 2 additions and 2 deletions

View File

@@ -292,7 +292,7 @@ static int ma_net_write_buff(NET *net,const char *packet, size_t len)
return 0;
}
unsigned char *mysql_net_store_length(unsigned char *packet, size_t length);
unsigned char *mysql_net_store_length(unsigned char *packet, ulonglong length);
/* Read and write using timeouts */