diff options
author | unknown <gkodinov/kgeorge@macbook.gmz> | 2008-03-29 09:52:16 +0200 |
---|---|---|
committer | unknown <gkodinov/kgeorge@macbook.gmz> | 2008-03-29 09:52:16 +0200 |
commit | 18a01ce9246616e2a3f131d69c132109335c9359 (patch) | |
tree | 2375972d03b6138e81e39befae9c2ddb6ffabd86 /libmysql | |
parent | 396b24a57c519bb85e74c01f427a7d02b4122035 (diff) | |
download | mariadb-git-18a01ce9246616e2a3f131d69c132109335c9359.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 */ |