Merge pull request #350 from jgallagher/clippy

Fix clippy warnings
This commit is contained in:
gwenn
2018-05-04 20:44:34 +02:00
committed by GitHub
13 changed files with 33 additions and 35 deletions

View File

@@ -780,7 +780,7 @@ impl InnerConnection {
// attempt to turn on extended results code; don't fail if we can't.
ffi::sqlite3_extended_result_codes(db, 1);
Ok(InnerConnection { db: db })
Ok(InnerConnection { db })
}
}