Skip to content
Permalink
Browse files
Fix a type mismatch introduced by the merge commit e0a1c74
  • Loading branch information
dr-m committed Oct 30, 2017
1 parent b5689c6 commit 52c3afd
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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 +

0 comments on commit 52c3afd

Please sign in to comment.