Commit 86b3b2b2 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix an icc warning on eng32

git-svn-id: file:///svn/toku/tokudb@7758 c7de825b-a66e-492c-adef-691d508d4ae1
parent e5a97fb2
......@@ -167,7 +167,7 @@ static void fill_array (unsigned char *data, int size) {
if (compressibility>0) {
int i;
for (i=0; i<size/compressibility; i++) {
data[i] = random();
data[i] = (unsigned char)random();
}
}
}
......
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