[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
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

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;
}