Skip to content

Commit 71ab33e

Browse files
committed
Fix compile error.
1 parent c176296 commit 71ab33e

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
@@ -1099,12 +1099,12 @@ Status VFS::read(
10991099
thread_buffer,
11001100
thread_nbytes,
11011101
use_read_ahead]() {
1102-
return read_impl(
1102+
throw_if_not_ok(read_impl(
11031103
uri,
11041104
thread_offset,
11051105
thread_buffer,
11061106
thread_nbytes,
1107-
use_read_ahead);
1107+
use_read_ahead));
11081108
});
11091109
results.push_back(std::move(task));
11101110
}

0 commit comments

Comments
 (0)