summaryrefslogtreecommitdiff
path: root/sql-common
diff options
context:
space:
mode:
authorgkodinov/kgeorge@macbook.gmz <>2008-03-29 09:52:16 +0200
committergkodinov/kgeorge@macbook.gmz <>2008-03-29 09:52:16 +0200
commit7cb4b7c19dab2d1dd56992af45dc9842c98a225f (patch)
tree2375972d03b6138e81e39befae9c2ddb6ffabd86 /sql-common
parentd0b1e944f5e1b05d487378272e90a64d13be1a6b (diff)
downloadmariadb-git-7cb4b7c19dab2d1dd56992af45dc9842c98a225f.tar.gz
fixed warnings and compile errors from the fix for bug 26243
Diffstat (limited to 'sql-common')
-rw-r--r--sql-common/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-common/client.c b/sql-common/client.c
index 88774ce61e1..519deac2bc5 100644
--- a/sql-common/client.c
+++ b/sql-common/client.c
@@ -2113,7 +2113,7 @@ CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user,
/* Check if version of protocol matches current one */
mysql->protocol_version= net->read_pos[0];
- DBUG_DUMP("packet",(char*) net->read_pos,10);
+ DBUG_DUMP("packet",(uchar*) net->read_pos,10);
DBUG_PRINT("info",("mysql protocol version %d, server=%d",
PROTOCOL_VERSION, mysql->protocol_version));
if (mysql->protocol_version != PROTOCOL_VERSION)