diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 14:07:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 14:07:39 +0000 |
commit | cf135f596348fc12f5aee68d206eb1ae0f030a13 (patch) | |
tree | 866db2075e714d821ca3d978205d21d88c0ec48d /ext/recover/test_recover.c | |
parent | Releasing progress-linux version 3.45.1-1~progress7.99u1. (diff) | |
download | sqlite3-cf135f596348fc12f5aee68d206eb1ae0f030a13.tar.xz sqlite3-cf135f596348fc12f5aee68d206eb1ae0f030a13.zip |
Merging upstream version 3.45.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ext/recover/test_recover.c')
-rw-r--r-- | ext/recover/test_recover.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/recover/test_recover.c b/ext/recover/test_recover.c index 1c333df..ba8ef6d 100644 --- a/ext/recover/test_recover.c +++ b/ext/recover/test_recover.c @@ -236,7 +236,7 @@ static int test_sqlite3_recover_init( zDb = Tcl_GetString(objv[2]); if( zDb[0]=='\0' ) zDb = 0; - pNew = ckalloc(sizeof(TestRecover)); + pNew = (TestRecover*)ckalloc(sizeof(TestRecover)); if( bSql==0 ){ zUri = Tcl_GetString(objv[3]); pNew->p = sqlite3_recover_init(db, zDb, zUri); |