mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +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;
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user