From b81936c4b2e5e4227368268f3ff64fff027df5fe Mon Sep 17 00:00:00 2001 From: xeodou Date: Thu, 2 Apr 2015 11:03:51 +0800 Subject: [PATCH] Fix doc --- doc.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc.go b/doc.go index 51364c3..f88223a 100644 --- a/doc.go +++ b/doc.go @@ -5,7 +5,7 @@ This works as driver for database/sql. Installation - go get github.com/mattn/go-sqlite3 + go get github.com/xeodou/go-sqlcipher Supported Types @@ -33,7 +33,7 @@ extension for Regexp matcher operation. #include #include #include - + SQLITE_EXTENSION_INIT1 static void regexp_func(sqlite3_context *context, int argc, sqlite3_value **argv) { if (argc >= 2) { @@ -44,7 +44,7 @@ extension for Regexp matcher operation. int vec[500]; int n, rc; pcre* re = pcre_compile(pattern, 0, &errstr, &erroff, NULL); - rc = pcre_exec(re, NULL, target, strlen(target), 0, 0, vec, 500); + rc = pcre_exec(re, NULL, target, strlen(target), 0, 0, vec, 500); if (rc <= 0) { sqlite3_result_error(context, errstr, 0); return; @@ -52,7 +52,7 @@ extension for Regexp matcher operation. sqlite3_result_int(context, 1); } } - + #ifdef _WIN32 __declspec(dllexport) #endif