Skip to content

Commit

Permalink
Fix compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
teo-tsirpanis committed Sep 16, 2024
1 parent 7f6ba93 commit 40fbf8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiledb/sm/filesystem/vfs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1127,12 +1127,12 @@ Status VFS::read(
thread_buffer,
thread_nbytes,
use_read_ahead]() {
return read_impl(
throw_if_not_ok(read_impl(
uri,
thread_offset,
thread_buffer,
thread_nbytes,
use_read_ahead);
use_read_ahead));
});
results.push_back(std::move(task));
}
Expand Down

0 comments on commit 40fbf8b

Please sign in to comment.