Flexelint polish

parent c2534d7c
...@@ -512,7 +512,9 @@ fellow_io_wait_completions(fellow_ioctx_t *ctxp, ...@@ -512,7 +512,9 @@ fellow_io_wait_completions(fellow_ioctx_t *ctxp,
if (min > space) if (min > space)
min = space; min = space;
//lint -e{845} strange, flexelint seems to disregard min = 0 argument? /*lint -e{845} The right argument to operator '||' is certain to be 0
* strange, flexelint seems to disregard min != 0 argument?
*/
while (min > ret || min == 0) { while (min > ret || min == 0) {
advance = 0; advance = 0;
io_uring_for_each_cqe(ring, head, cqe) { io_uring_for_each_cqe(ring, head, cqe) {
......
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