diff options
author | drh <> | 2023-10-19 20:46:22 +0000 |
---|---|---|
committer | drh <> | 2023-10-19 20:46:22 +0000 |
commit | f5e487d1685e705daa6eb79a26252f83f29c610a (patch) | |
tree | 9daed06b083dc28224a282ad899817eaf237b478 /src/printf.c | |
parent | c7ad9f65fa49b67c4ff5491f0231daa18f78afeb (diff) | |
parent | dcf76a8bbda9028c391945834d67471fc8e2821f (diff) | |
download | sqlite-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.c | 2 |
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--; |