[CMLIB] Simplify an ASSERTMSG() as an ASSERT().

This commit is contained in:
Serge Gautherie
2018-07-02 11:45:01 +02:00
committed by Hermès Bélusca-Maïto
parent d53991895d
commit fb48381cb4

View File

@@ -1285,7 +1285,7 @@ CmpSelectLeaf(IN PHHIVE Hive,
if (!IndexKey)
{
/* Should not happen! */
ASSERTMSG("IndexKey = NULL!, it should not happen!\n", FALSE);
ASSERT(IndexKey != NULL);
return HCELL_NIL;
}