Remove redundant assertion
This commit is contained in:
parent
66a2d3ddd4
commit
d6c5fdf5a2
@ -95,7 +95,6 @@ char *table_get(struct table *t,int y, int x)
|
|||||||
static const char * empty="";
|
static const char * empty="";
|
||||||
if (y >= t->height || x >= t->width) {
|
if (y >= t->height || x >= t->width) {
|
||||||
assert(0);
|
assert(0);
|
||||||
abort();
|
|
||||||
return (char*)empty;
|
return (char*)empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user