summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2012-09-10 13:53:19 +0300
committerMichael Widenius <monty@askmonty.org>2012-09-10 13:53:19 +0300
commit7fbd2de8b8bba2ed27bebbdba99ed4f345b83fa5 (patch)
treecf3d2a9e0c2f28bb5bf6de973576ffcff79e5189
parent3a793b9d4d53867263eefd60010af2a124f485d1 (diff)
downloadmariadb-git-7fbd2de8b8bba2ed27bebbdba99ed4f345b83fa5.tar.gz
Fixed compiler warning on Mac
-rw-r--r--mysys/mf_iocache2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/mf_iocache2.c b/mysys/mf_iocache2.c
index 72372ae6bc0..ff05b7fa485 100644
--- a/mysys/mf_iocache2.c
+++ b/mysys/mf_iocache2.c
@@ -440,7 +440,7 @@ process_flags:
/* TODO: implement precision */
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)
goto err;
out_length+= total;