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 | 5ba6efcb1189caf846723546b634d1c640f46651 (patch) | |
tree | 2375972d03b6138e81e39befae9c2ddb6ffabd86 /sql-common | |
parent | 57f929773754b7527751f6e8b058c56377ae2b6a (diff) | |
download | mariadb-git-5ba6efcb1189caf846723546b634d1c640f46651.tar.gz |
fixed warnings and compile errors from the fix for bug 26243
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 2 |
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) |