mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
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
This commit is contained in:
parent
4841aa284b
commit
38b5ea0487
2 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue