Commit 5d67853a authored by Michael Widenius's avatar Michael Widenius

Fixed compiler warning on Mac

parent 962dcca9
...@@ -440,7 +440,7 @@ size_t my_b_vprintf(IO_CACHE *info, const char* fmt, va_list args) ...@@ -440,7 +440,7 @@ size_t my_b_vprintf(IO_CACHE *info, const char* fmt, va_list args)
/* TODO: implement precision */ /* TODO: implement precision */
if (backtick_quoting) if (backtick_quoting)
{ {
size_t total= my_b_write_backtick_quote(info, (uchar *) par, length2); size_t total= my_b_write_backtick_quote(info, par, length2);
if (total == (size_t)-1) if (total == (size_t)-1)
goto err; goto err;
out_length+= total; out_length+= total;
......
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