Commit 29d9bf35 authored by unknown's avatar unknown

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


innobase/eval/eval0eval.c:
  explicit cast
sql/ha_innodb.cc:
  removed unused variable
parent 7a241510
......@@ -725,7 +725,7 @@ eval_predefined(
uint_val = (ulint) int_val;
}
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(
/*===============*/
THD* thd) /* in: the MySQL query thread of the caller */
{
char* buf;
Protocol *protocol= thd->protocol;
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