Commit 6a6d5ef7 authored by guilhem@mysql.com's avatar guilhem@mysql.com

trying to remove Windows compiler warnings (Miguel, could you please check if it's better now?)

parent d8ad1eb1
...@@ -725,7 +725,7 @@ eval_predefined( ...@@ -725,7 +725,7 @@ eval_predefined(
uint_val = (ulint) int_val; uint_val = (ulint) int_val;
} }
for (tmp = int_len; uint_val > 0; uint_val /= 10) { for (tmp = int_len; uint_val > 0; uint_val /= 10) {
data[--tmp] = '0' + (uint_val % 10); data[--tmp] = '0' + (byte)(uint_val % 10);
} }
} }
......
...@@ -4780,7 +4780,6 @@ innodb_show_status( ...@@ -4780,7 +4780,6 @@ innodb_show_status(
/*===============*/ /*===============*/
THD* thd) /* in: the MySQL query thread of the caller */ THD* thd) /* in: the MySQL query thread of the caller */
{ {
char* buf;
Protocol *protocol= thd->protocol; Protocol *protocol= thd->protocol;
trx_t* trx; trx_t* trx;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment