diff options
author | unknown <petr@mysql.com> | 2006-05-30 18:44:26 +0400 |
---|---|---|
committer | unknown <petr@mysql.com> | 2006-05-30 18:44:26 +0400 |
commit | d948704bbaeff69310d7ccaa293b8d36f3777a59 (patch) | |
tree | 2a01f393f4d52bcbe031d8a8484548d1f0d139e5 /storage/csv/ha_tina.h | |
parent | ba67edc47c6dbb17f423d51a0e51413dbd250cc0 (diff) | |
download | mariadb-git-d948704bbaeff69310d7ccaa293b8d36f3777a59.tar.gz |
one more portability fix
storage/csv/ha_tina.h:
portability fix
Diffstat (limited to 'storage/csv/ha_tina.h')
-rw-r--r-- | storage/csv/ha_tina.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/csv/ha_tina.h b/storage/csv/ha_tina.h index df5e4143a5c..6b72eef49ff 100644 --- a/storage/csv/ha_tina.h +++ b/storage/csv/ha_tina.h @@ -71,7 +71,7 @@ class Transparent_file { buff= (byte *) my_malloc(buff_size*sizeof(byte), MYF(MY_WME)); } ~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) { |