aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2023-10-17 19:33:52 +0000
committerdrh <>2023-10-17 19:33:52 +0000
commit43dc31cf1feff10d37e7a5dc3ce141698054768a (patch)
treef1b3570aa435f264f164c44114d58dd4eb807184 /src/sqliteInt.h
parent6db4e5ed4cc2247381bb2b93bdb66979d081cf94 (diff)
downloadsqlite-43dc31cf1feff10d37e7a5dc3ce141698054768a.tar.gz
sqlite-43dc31cf1feff10d37e7a5dc3ce141698054768a.zip
Fix a harmless compiler warning about variant types for a pointer function.
FossilOrigin-Name: 37ff0d8e7f91c32e8c53bb015280be47c66bf599281b640a8d3fd41335b55289
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 54f8db50a..bee53b6c7 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -5352,7 +5352,7 @@ int sqlite3ApiExit(sqlite3 *db, int);
int sqlite3OpenTempDatabase(Parse *);
char *sqlite3RCStrRef(char*);
-void sqlite3RCStrUnref(char*);
+void sqlite3RCStrUnref(void*);
char *sqlite3RCStrNew(u64);
char *sqlite3RCStrResize(char*,u64);