diff options
author | gkodinov/kgeorge@macbook.gmz <> | 2008-03-29 09:52:16 +0200 |
---|---|---|
committer | gkodinov/kgeorge@macbook.gmz <> | 2008-03-29 09:52:16 +0200 |
commit | 7cb4b7c19dab2d1dd56992af45dc9842c98a225f (patch) | |
tree | 2375972d03b6138e81e39befae9c2ddb6ffabd86 /libmysql | |
parent | d0b1e944f5e1b05d487378272e90a64d13be1a6b (diff) | |
download | mariadb-git-7cb4b7c19dab2d1dd56992af45dc9842c98a225f.tar.gz |
fixed warnings and compile errors from the fix for bug 26243
Diffstat (limited to 'libmysql')
-rw-r--r-- | libmysql/libmysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c index bcbaf9f1822..dd66a325169 100644 --- a/libmysql/libmysql.c +++ b/libmysql/libmysql.c @@ -2444,7 +2444,7 @@ static my_bool execute(MYSQL_STMT *stmt, char *packet, ulong length) my_bool res; DBUG_ENTER("execute"); - DBUG_DUMP("packet", packet, length); + DBUG_DUMP("packet", (uchar*)packet, length); mysql->last_used_con= mysql; int4store(buff, stmt->stmt_id); /* Send stmt id to server */ |