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

This commit is contained in:
Serge Gautherie
2018-08-08 21:45:46 +02:00
parent d53991895d
commit fb48381cb4
+1 -1
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;
}