Skip to content

Commit 40fbf8b

Browse files
committed
Fix compile error.
1 parent 7f6ba93 commit 40fbf8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tiledb/sm/filesystem/vfs.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,12 +1127,12 @@ Status VFS::read(
11271127
thread_buffer,
11281128
thread_nbytes,
11291129
use_read_ahead]() {
1130-
return read_impl(
1130+
throw_if_not_ok(read_impl(
11311131
uri,
11321132
thread_offset,
11331133
thread_buffer,
11341134
thread_nbytes,
1135-
use_read_ahead);
1135+
use_read_ahead));
11361136
});
11371137
results.push_back(std::move(task));
11381138
}

0 commit comments

Comments
 (0)