diff options
Diffstat (limited to 'core/list.h')
-rw-r--r-- | core/list.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/list.h b/core/list.h index be2dccd876..65d45ffdfc 100644 --- a/core/list.h +++ b/core/list.h @@ -353,7 +353,8 @@ public: Element *it = front(); while (it) { - if (it->value == p_val) return it; + if (it->value == p_val) + return it; it = it->next(); }; |