Commit 313bda9e authored by unknown's avatar unknown

ha_archive.cc:

  Added cast to fix windows compile error


sql/examples/ha_archive.cc:
  Added cast to fix windows compile error
parent 799299a5
...@@ -877,7 +877,7 @@ int ha_archive::optimize(THD* thd, HA_CHECK_OPT* check_opt) ...@@ -877,7 +877,7 @@ int ha_archive::optimize(THD* thd, HA_CHECK_OPT* check_opt)
} }
} }
my_free(buf, MYF(0)); my_free((char*)buf, MYF(0));
if (rc && rc != HA_ERR_END_OF_FILE) if (rc && rc != HA_ERR_END_OF_FILE)
goto error; goto error;
} }
......
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