summaryrefslogtreecommitdiffstats
path: root/core/templates/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/templates/list.h')
-rw-r--r--core/templates/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/list.h b/core/templates/list.h
index 809d7e1667..6393b942ff 100644
--- a/core/templates/list.h
+++ b/core/templates/list.h
@@ -219,7 +219,7 @@ private:
int size_cache = 0;
bool erase(const Element *p_I) {
- ERR_FAIL_COND_V(!p_I, false);
+ ERR_FAIL_NULL_V(p_I, false);
ERR_FAIL_COND_V(p_I->data != this, false);
if (first == p_I) {