summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Laboissière <rafael@debian.org>2022-08-19 07:09:07 -0300
committerRafael Laboissière <rafael@debian.org>2022-08-19 07:09:07 -0300
commit9780d17664c8c63990e212ebdf77aea9b03041e1 (patch)
treefa73e89ac58ed4a4b1db69a1614ef118ac0b4df7
parenta5776195721f6d56407d8b361caabf39df76e264 (diff)
New upstream version 0.6.4
-rw-r--r--changes.txt1
-rw-r--r--src/sqlite-module.c2
-rw-r--r--src/version.h2
3 files changed, 3 insertions, 2 deletions
diff --git a/changes.txt b/changes.txt
index 32a59e0..2b8d71e 100644
--- a/changes.txt
+++ b/changes.txt
@@ -3,6 +3,7 @@ Changes since v0.6.0
2. Updated aclocal.m4; added support for CPPFLAGS (based upon patch
from Rafael Laboissière)
3. Removed top-level Makefile (Rafael Laboissière)
+4. Used SLstrlen_Type instead of unsigned int for slang-3 migration
Changes since 0.5.0
1. Fixed uninitialized variable (John E. Davis)
diff --git a/src/sqlite-module.c b/src/sqlite-module.c
index 553e4b0..c1750d1 100644
--- a/src/sqlite-module.c
+++ b/src/sqlite-module.c
@@ -383,7 +383,7 @@ static int do_sqlite_bind(sqlite3 *db, sqlite3_stmt *ppStmt, int num, int i)
{
char *svalue;
SLang_BString_Type *bvalue;
- unsigned int bstrlen;
+ SLstrlen_Type bstrlen;
unsigned char *bptr;
#define MAP(slangtype, ctype, slangpop, sqlitebind) \
diff --git a/src/version.h b/src/version.h
index 1a10384..97f6e53 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,4 +1,4 @@
-#define MODULE_VERSION_STRING "0.6.3"
+#define MODULE_VERSION_STRING "0.6.4"
#define MODULE_VERSION_NUMBER 603
static char *Module_Version_String = MODULE_VERSION_STRING;