small fix

This commit is contained in:
prod2 2022-01-29 06:01:00 +01:00
parent 0b41e69007
commit 19b8079436
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ proc tableGet*[U, V](tbl: Table[U, V], key: U, val: var V): bool =
return false
let entry = findEntry(tbl.entries, tbl.cap, key)
if not entry[].entryStatus == esAlive:
if not (entry[].entryStatus == esAlive):
return false
val = entry[].value