Commit a74cdb23 authored by unknown's avatar unknown

Fixes to make it compile on Windows.


sql/log_event.cc:
  The type byte is not equivalent to char on Windows, so compile fails.
parent c13e1694
...@@ -1141,7 +1141,7 @@ void Log_event::print_header(IO_CACHE* file, ...@@ -1141,7 +1141,7 @@ void Log_event::print_header(IO_CACHE* file,
need a # to prefix the rest of printouts for example those of need a # to prefix the rest of printouts for example those of
Rows_log_event::print_helper(). Rows_log_event::print_helper().
*/ */
my_b_write(file, "# ", 2); my_b_write(file, reinterpret_cast<const byte*>("# "), 2);
} }
DBUG_VOID_RETURN; DBUG_VOID_RETURN;
} }
......
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