From b4db5666b61646505521f175cc9d6854e2bbfc64 Mon Sep 17 00:00:00 2001 From: gwenn Date: Sun, 14 Aug 2016 19:57:39 +0200 Subject: [PATCH] Misc --- src/vtab/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vtab/mod.rs b/src/vtab/mod.rs index 3b97572..cc37257 100644 --- a/src/vtab/mod.rs +++ b/src/vtab/mod.rs @@ -296,7 +296,7 @@ macro_rules! init_module { static $module_name: ffi::sqlite3_module = ffi::sqlite3_module { iVersion: 1, - xCreate: $create, + xCreate: $create, /* For eponymous-only virtual tables, the xCreate method is NULL */ xConnect: Some($connect), /* A virtual table is eponymous if its xCreate method is the exact same function as the xConnect method */ xBestIndex: Some($best_index), xDisconnect: Some($disconnect),