1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

A cleanup for MDEV-8844: Fixing compilation failure on Windows

Fixing lossy type conversions:
- from int64 to int
- from size_t to uint
This commit is contained in:
Alexander Barkov
2019-12-07 18:17:08 +04:00
parent 3c6065a270
commit d30dbaa20d
3 changed files with 6 additions and 5 deletions

View File

@ -531,7 +531,7 @@ public:
*/
bool copy_printable_hhhh(CHARSET_INFO *to_cs,
CHARSET_INFO *from_cs,
const char *from, uint32 from_length);
const char *from, size_t from_length);
bool append_ulonglong(ulonglong val);
bool append_longlong(longlong val);