Remove redundant assertion

This commit is contained in:
Michal Mielewczyk 2019-06-11 07:31:56 -04:00
parent 66a2d3ddd4
commit d6c5fdf5a2

View File

@ -95,7 +95,6 @@ char *table_get(struct table *t,int y, int x)
static const char * empty="";
if (y >= t->height || x >= t->width) {
assert(0);
abort();
return (char*)empty;
}