aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 8dd9957..d3c286b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -79,7 +79,7 @@ fn main() {
} => {
let dbconn = rusqlite::Connection::open(database).unwrap();
- yaqlite::select(&dbconn, &table_name, &record_id);
+ yaqlite::select(&dbconn, &table_name, &record_id).unwrap();
dbconn.close().unwrap();
},