vtablog typos
(1) By anonymous on 2025-05-24 15:13:15 [source]
Hello,
Here is a little patch:
diff --git a/ext/misc/vtablog.c b/ext/misc/vtablog.c
index 2cc29c285f..fbac27534c 100644
--- a/ext/misc/vtablog.c
+++ b/ext/misc/vtablog.c
@@ -240,7 +240,7 @@ static int vtablogConnect(
/*
-** This method is the destructor for vtablog_cursor objects.
+** This method is the destructor for vtablog objects.
*/
static int vtablogDisconnect(sqlite3_vtab *pVtab){
vtablog_vtab *pTab = (vtablog_vtab*)pVtab;
@@ -252,7 +252,7 @@ static int vtablogDisconnect(sqlite3_vtab *pVtab){
}
/*
-** This method is the destructor for vtablog_cursor objects.
+** This method is the destructor for vtablog objects.
*/
static int vtablogDestroy(sqlite3_vtab *pVtab){
vtablog_vtab *pTab = (vtablog_vtab*)pVtab;
Regards.
(2) By Stephan Beal (stephan) on 2025-05-24 16:03:34 in reply to 1 [link] [source]
Here is a little patch:
Something very close to that was just checked in at src:5d25f62bcd2d7. Thank you for pointing it out!