mirror of
https://github.com/sockspls/badfish
synced 2025-05-01 17:19:36 +00:00
Fix a compile error in debug mode
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
927f1b0bd3
commit
9bee5f51d8
1 changed files with 1 additions and 1 deletions
|
@ -508,7 +508,7 @@ int Book::find_entry(uint64_t key) {
|
|||
BookEntry Book::read_entry(int idx) {
|
||||
|
||||
assert(idx >= 0 && idx < bookSize);
|
||||
assert(is_open());
|
||||
assert(bookFile.is_open());
|
||||
|
||||
BookEntry e;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue