mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fixes for Windows compilation failures.
server-tools/instance-manager/parse.h: Post-merge fixes: fix Windows build. sql/log_event.cc: uint32 -> uint sql/rpl_filter.cc: uint32 -> uint sql/rpl_filter.h: uint32 -> uint
This commit is contained in:
@ -69,7 +69,7 @@ private:
|
||||
|
||||
inline char *Named_value::alloc_str(const LEX_STRING *str)
|
||||
{
|
||||
return my_strndup((const byte *) str->str, str->length, MYF(0));
|
||||
return my_strndup(str->str, str->length, MYF(0));
|
||||
}
|
||||
|
||||
inline char *Named_value::alloc_str(const char *str)
|
||||
|
Reference in New Issue
Block a user