mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07:00
fix(PVS/V1044): suppress warning
This commit is contained in:
parent
5084b6fb92
commit
10868dbf89
@ -15,7 +15,7 @@ void ut_rbuffer_each_read_chunk(RBuffer *buf, each_ptr_cb cb)
|
||||
|
||||
void ut_rbuffer_each_write_chunk(RBuffer *buf, each_ptr_cb cb)
|
||||
{
|
||||
RBUFFER_UNTIL_FULL(buf, wptr, wcnt) {
|
||||
RBUFFER_UNTIL_FULL(buf, wptr, wcnt) { // -V1044
|
||||
cb(wptr, wcnt);
|
||||
rbuffer_produced(buf, wcnt);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user