mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
typecast fix for windows 64-bit compilation error
BitKeeper/etc/ignore: Added VC++Files/client/mysql_amd64.dsp to the ignore list
This commit is contained in:
@ -1106,3 +1106,4 @@ vio/test-ssl
|
|||||||
vio/test-sslclient
|
vio/test-sslclient
|
||||||
vio/test-sslserver
|
vio/test-sslserver
|
||||||
vio/viotest-ssl
|
vio/viotest-ssl
|
||||||
|
VC++Files/client/mysql_amd64.dsp
|
||||||
|
@ -2154,7 +2154,7 @@ print_table_data_xml(MYSQL_RES *result)
|
|||||||
for (uint i=0; i < mysql_num_fields(result); i++)
|
for (uint i=0; i < mysql_num_fields(result); i++)
|
||||||
{
|
{
|
||||||
tee_fprintf(PAGER, "\t<field name=\"");
|
tee_fprintf(PAGER, "\t<field name=\"");
|
||||||
xmlencode_print(fields[i].name, strlen(fields[i].name));
|
xmlencode_print(fields[i].name, (uint) strlen(fields[i].name));
|
||||||
tee_fprintf(PAGER, "\">");
|
tee_fprintf(PAGER, "\">");
|
||||||
xmlencode_print(cur[i], lengths[i]);
|
xmlencode_print(cur[i], lengths[i]);
|
||||||
tee_fprintf(PAGER, "</field>\n");
|
tee_fprintf(PAGER, "</field>\n");
|
||||||
|
Reference in New Issue
Block a user