Fix comparison is always true

Via lgtm.
parent 118ac4ed
......@@ -133,7 +133,7 @@ xyzzy_rot13_bytes(struct req *req, enum vdp_action act, void **priv,
i = -1;
}
}
if (j > 0 && i >= 0)
if (i >= 0)
retval = VDP_bytes(req, VDP_FLUSH, q, i + 1);
return (retval);
}
......
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