summaryrefslogtreecommitdiff
path: root/src/misc
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/hashtable.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/hashtable.hpp b/src/misc/hashtable.hpp
index 46ef7ca47..3289d3bbf 100644
--- a/src/misc/hashtable.hpp
+++ b/src/misc/hashtable.hpp
@@ -67,7 +67,7 @@ struct CHashTableSlotT
return true;
}
Titem_ *pItem = m_pFirst;
- while (true) {
+ for (;;) {
if (pItem == NULL) {
return false;
}