From 8b3e2847718cf9eedcd7d6f8de3f2ad05fa472de Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Wed, 23 Aug 2017 10:13:05 +0200 Subject: [PATCH] Make a cosmetic adjustment --- src/connection.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/connection.rs b/src/connection.rs index eaa55f4..8c18e2c 100644 --- a/src/connection.rs +++ b/src/connection.rs @@ -114,8 +114,8 @@ impl Connection { ok!( self.raw, ffi::sqlite3_busy_timeout(self.raw, milliseconds as c_int) - ) - }; + ); + } Ok(()) } @@ -127,8 +127,8 @@ impl Connection { ok!( self.raw, ffi::sqlite3_busy_handler(self.raw, None, 0 as *mut _) - ) - }; + ); + } Ok(()) } }