Change ASSERT(false) to DEBUGPANIC().

This commit is contained in:
Gregory Nutt 2018-01-19 09:07:19 -06:00
parent f012fe96cb
commit be3c2d1e36

View File

@ -169,7 +169,7 @@ int nxsem_post(FAR sem_t *sem)
{
/* This should not happen. */
ASSERT(false);
DEBUGPANIC();
}
}