Commit ecdac0a3 authored by marko@hundin.mysql.fi's avatar marko@hundin.mysql.fi

eval0eval.c:

  Backport suppression of MSVC++ warning from 4.1
parent 593a1017
...@@ -725,7 +725,7 @@ eval_predefined( ...@@ -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);
} }
} }
......
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