Commit bf9244b5 authored by petr@mysql.com's avatar petr@mysql.com

one more portability fix

parent 5fad999f
...@@ -71,7 +71,7 @@ class Transparent_file ...@@ -71,7 +71,7 @@ class Transparent_file
{ buff= (byte *) my_malloc(buff_size*sizeof(byte), MYF(MY_WME)); } { buff= (byte *) my_malloc(buff_size*sizeof(byte), MYF(MY_WME)); }
~Transparent_file() ~Transparent_file()
{ my_free(buff, MYF(MY_ALLOW_ZERO_PTR)); } { my_free((gptr)buff, MYF(MY_ALLOW_ZERO_PTR)); }
void init_buff(File filedes_arg) void init_buff(File filedes_arg)
{ {
......
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