Commit 19bae53d authored by kent@mysql.com's avatar kent@mysql.com

log.cc:

  Cast my_munmap() argument to be able to compile on Solaris
parent a9bc9696
......@@ -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));
}
......
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