Skip to content

Commit 8241a10

Browse files
committed
Fix build after rebase
1 parent 0c34684 commit 8241a10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/dotnet/rs_src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pub extern "C" fn db_open(path_ptr: *const c_char, error_ptr: *mut Error) -> *co
8585
let path_str = path_cstr.to_str();
8686

8787
let connection_result =
88-
Connection::from_uri(path_str.unwrap(), true, false, false, false, false);
88+
Connection::from_uri(path_str.unwrap(), true, false, false, false, false, false);
8989
match connection_result {
9090
Ok((io, val)) => {
9191
allocate(Database {

0 commit comments

Comments
 (0)