mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Fix of incompatible types
len and packet_error needs to be of same type for (len == packet_error) to check failures
This commit is contained in:
@ -1003,7 +1003,8 @@ static int dump_remote_log_entries(const char* logname)
|
||||
{
|
||||
char buf[128];
|
||||
LAST_EVENT_INFO last_event_info;
|
||||
uint len, logname_len;
|
||||
ulong len;
|
||||
uint logname_len;
|
||||
NET* net;
|
||||
int error= 0;
|
||||
my_off_t old_off= start_position_mot;
|
||||
|
Reference in New Issue
Block a user