mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 23:32:04 +00:00
Fix warning in assert statement
This commit is contained in:
parent
7ba577e1b0
commit
245a46735d
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ void FName::NameManager::InitBuckets ()
|
|||
// Register built-in names. 'None' must be name 0.
|
||||
for (size_t i = 0; i < countof(PredefinedNames); ++i)
|
||||
{
|
||||
assert(NULL == FindName(PredefinedNames[i], true) && "Predefined name already inserted");
|
||||
assert((NULL == FindName(PredefinedNames[i], true)) && "Predefined name already inserted");
|
||||
FindName (PredefinedNames[i], false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue