Skip to content

Commit

Permalink
retrieve seekable handle removed in the c API
Browse files Browse the repository at this point in the history
  • Loading branch information
danovaro committed Dec 10, 2024
1 parent b64b924 commit 7e03919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fdb5/api/fdb_c.cc
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ int fdb_retrieve(fdb_handle_t* fdb, fdb_request_t* req, fdb_datareader_t* dr) {
ASSERT(fdb);
ASSERT(req);
ASSERT(dr);
dr->set(fdb->retrieve(req->request(), true));
dr->set(fdb->retrieve(req->request()));
});
}
int fdb_flush(fdb_handle_t* fdb) {
Expand Down

0 comments on commit 7e03919

Please sign in to comment.