aboutsummaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authordrh <>2023-10-19 20:46:22 +0000
committerdrh <>2023-10-19 20:46:22 +0000
commitf5e487d1685e705daa6eb79a26252f83f29c610a (patch)
tree9daed06b083dc28224a282ad899817eaf237b478 /src/printf.c
parentc7ad9f65fa49b67c4ff5491f0231daa18f78afeb (diff)
parentdcf76a8bbda9028c391945834d67471fc8e2821f (diff)
downloadsqlite-f5e487d1685e705daa6eb79a26252f83f29c610a.tar.gz
sqlite-f5e487d1685e705daa6eb79a26252f83f29c610a.zip
Merge recent trunk enhancements into the jsonb branch.
FossilOrigin-Name: f47a8d0a207a8442a7f621b070ce9dd1d6013ce26bcf68165d20bb379bd478a0
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index 87ad91f79..3c0b182d3 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -1389,7 +1389,7 @@ char *sqlite3RCStrRef(char *z){
** Decrease the reference count by one. Free the string when the
** reference count reaches zero.
*/
-void sqlite3RCStrUnref(char *z){
+void sqlite3RCStrUnref(void *z){
RCStr *p = (RCStr*)z;
assert( p!=0 );
p--;