mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Fix a type mismatch introduced by the merge commit e0a1c745ec
This commit is contained in:
parent
b5689c6c87
commit
52c3afd4ca
1 changed files with 1 additions and 1 deletions
|
@ -8673,7 +8673,7 @@ User_var_log_event(const char* buf, uint event_len,
|
|||
Old events will not have this extra byte, thence,
|
||||
we keep the flags set to UNDEF_F.
|
||||
*/
|
||||
uint bytes_read= (uint)((val + val_len) - buf_start);
|
||||
size_t bytes_read= ((val + val_len) - buf_start);
|
||||
if ((data_written - bytes_read) > 0)
|
||||
{
|
||||
flags= (uint) *(buf + UV_VAL_IS_NULL + UV_VAL_TYPE_SIZE +
|
||||
|
|
Loading…
Add table
Reference in a new issue