1
0
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:
unknown
2004-05-12 10:40:04 +03:00
parent 64d2ddbf4e
commit 79229d6d42

View File

@ -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);
}
}