diff options
author | Michael Widenius <monty@askmonty.org> | 2012-09-10 13:53:19 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2012-09-10 13:53:19 +0300 |
commit | 7fbd2de8b8bba2ed27bebbdba99ed4f345b83fa5 (patch) | |
tree | cf3d2a9e0c2f28bb5bf6de973576ffcff79e5189 /mysys/mf_iocache2.c | |
parent | 3a793b9d4d53867263eefd60010af2a124f485d1 (diff) | |
download | mariadb-git-7fbd2de8b8bba2ed27bebbdba99ed4f345b83fa5.tar.gz |
Fixed compiler warning on Mac
Diffstat (limited to 'mysys/mf_iocache2.c')
-rw-r--r-- | mysys/mf_iocache2.c | 2 |
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; |