A cosmetic adjustment

This commit is contained in:
Ivan Ukhov 2015-08-01 14:09:08 -04:00
parent b433054c82
commit ff3c62b4db

View File

@ -21,11 +21,7 @@ impl<'l> Connection<'l> {
ffi::SQLITE_OPEN_CREATE | ffi::SQLITE_OPEN_READWRITE, ffi::SQLITE_OPEN_CREATE | ffi::SQLITE_OPEN_READWRITE,
0 as *const _)); 0 as *const _));
} }
Ok(Connection { Ok(Connection { raw: raw, busy_callback: None, phantom: PhantomData })
raw: raw,
busy_callback: None,
phantom: PhantomData,
})
} }
/// Execute a query without processing the resulting rows if any. /// Execute a query without processing the resulting rows if any.