PVS/V1001: Remove assignment to unused variable

This commit is contained in:
G-flat
2020-10-05 15:17:14 +08:00
committed by GitHub
parent b0769729c8
commit 8972eea2e1

View File

@@ -1531,10 +1531,10 @@ Integer nvim_buf_add_highlight(Buffer buffer,
end_line++; end_line++;
} }
ns_id = extmark_set(buf, ns_id, 0, extmark_set(buf, ns_id, 0,
(int)line, (colnr_T)col_start, (int)line, (colnr_T)col_start,
end_line, (colnr_T)col_end, end_line, (colnr_T)col_end,
decoration_hl(hl_id), kExtmarkNoUndo); decoration_hl(hl_id), kExtmarkNoUndo);
return src_id; return src_id;
} }