Flexelint "Limit chunk_bytes more strictly"

tiny glitch
parent da63a5b8
......@@ -93,7 +93,7 @@ stvfe_tune_check(struct stvfe_tune *tune)
"(less than 1/%zu of memory size, but at least %zu (%u))\n",
(size_t)1 << l, l,
(size_t)1 << CHUNK_SHIFT,
(size_t)1 << MIN_FELLOW_BITS, MIN_FELLOW_BITS);
(size_t)1 << MIN_FELLOW_BITS, (unsigned)MIN_FELLOW_BITS);
tune->mem_reserve_chunks <<= (tune->chunk_exponent - l);
tune->dsk_reserve_chunks <<= (tune->chunk_exponent - l);
tune->chunk_exponent = l;
......
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