Commit a74cdb23 authored by unknown's avatar unknown
Browse files

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1141,7 +1141,7 @@ void Log_event::print_header(IO_CACHE* file,
      need a # to prefix the rest of printouts for example those of
      Rows_log_event::print_helper().
    */
    my_b_write(file, "# ", 2);
    my_b_write(file, reinterpret_cast<const byte*>("# "), 2);
  }
  DBUG_VOID_RETURN;
}