mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CMLIB] Simplify an ASSERTMSG() as an ASSERT().
This commit is contained in:
parent
d53991895d
commit
fb48381cb4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue