Skip to content

Commit ea62a48

Browse files
committed
chore: format local/connection.rs
1 parent 906b24b commit ea62a48

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libsql/src/local/connection.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -506,13 +506,13 @@ impl Connection {
506506
}
507507

508508
pub(crate) fn wal_insert_frame(&self, frame: &[u8]) -> Result<()> {
509-
let rc = unsafe {
509+
let rc = unsafe {
510510
libsql_sys::ffi::libsql_wal_insert_frame(
511511
self.handle(),
512512
frame.len() as u32,
513513
frame.as_ptr() as *mut std::ffi::c_void,
514-
0
515-
)
514+
0,
515+
)
516516
};
517517
if rc != 0 {
518518
return Err(crate::errors::Error::SqliteFailure(

0 commit comments

Comments
 (0)