Commit 8e8e3007 authored by unknown's avatar unknown

Fix of incompatible types

len and packet_error needs to be of same type for (len == packet_error) to
check failures

parent 8d9c66a5
...@@ -1003,7 +1003,8 @@ static int dump_remote_log_entries(const char* logname) ...@@ -1003,7 +1003,8 @@ static int dump_remote_log_entries(const char* logname)
{ {
char buf[128]; char buf[128];
LAST_EVENT_INFO last_event_info; LAST_EVENT_INFO last_event_info;
uint len, logname_len; ulong len;
uint logname_len;
NET* net; NET* net;
int error= 0; int error= 0;
my_off_t old_off= start_position_mot; my_off_t old_off= start_position_mot;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment