Commit a12f1d0e authored by unknown's avatar unknown
Browse files

log.cc:

  Cast my_munmap() argument to be able to compile on Solaris


sql/log.cc:
  Cast my_munmap() argument to be able to compile on Solaris
parent c3e8da4f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2790,7 +2790,7 @@ void TC_LOG_MMAP::close()
  case 3:
    my_free((gptr)pages, MYF(0));
  case 2:
    my_munmap(data, (size_t)file_length);
    my_munmap((byte*)data, (size_t)file_length);
  case 1:
    my_close(fd, MYF(0));
  }