mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
eval0eval.c:
Backport suppression of MSVC++ warning from 4.1 innobase/eval/eval0eval.c: Backport suppression of MSVC++ warning from 4.1
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user