grid: remove useless assertion

grid.c:1041:24: warning: comparison of unsigned expression in ‘>= 0’ is always true [-Wtype-limits]
This commit is contained in:
Daniel Eklöf 2021-11-27 18:15:59 +01:00
parent 512a07fd14
commit 747da83c76
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

1
grid.c
View file

@ -1038,7 +1038,6 @@ grid_row_uri_range_put(struct row *row, int col, const char *uri, uint64_t id)
}
}
xassert(insert_idx >= 0);
xassert(insert_idx <= extra->uri_ranges.count);
if (replace) {