abort() instead of assert(0)

This commit is contained in:
Tony Garnock-Jones 2015-06-30 23:43:03 -04:00
parent b0b7db518c
commit f60bc9cd12
1 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ static int set_walk(tt_arena_t *a,
}
}
default:
assert(0);
abort();
}
}
@ -191,7 +191,7 @@ tt_node_ptr_t tt_dict_remove1(tt_arena_t *a,
}
}
default:
assert(0);
abort();
}
}