diff options
author | georg@lmy002.wdf.sap.corp <> | 2005-06-13 12:41:15 +0200 |
---|---|---|
committer | georg@lmy002.wdf.sap.corp <> | 2005-06-13 12:41:15 +0200 |
commit | b64e6db5a4d6807fe693c22b5b743968264a83dc (patch) | |
tree | 0a4d130bc8c5eb5d2582f3864b50584de7a5647f /sql-common | |
parent | 55f962c0cfff56ce5d9e0639072fdd65541ea471 (diff) | |
download | mariadb-git-b64e6db5a4d6807fe693c22b5b743968264a83dc.tar.gz |
fixes for windows 64-bit compiler warnings
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 0bebcb0065d..c736acae857 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -2130,7 +2130,7 @@ CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user, for (; ptr<end; ptr++) { MYSQL_RES *res; - if (mysql_real_query(mysql,*ptr, strlen(*ptr))) + if (mysql_real_query(mysql,*ptr, (ulong) strlen(*ptr))) goto error; if (mysql->fields) { |