1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix harmless compiler warning in the test module for sessions.

FossilOrigin-Name: 3d5ec99397c183cfb8c5d31e1967e0df8a4d6edbea92bbdf728571e3a6a36d68
This commit is contained in:
drh
2023-10-09 12:39:59 +00:00
parent c8f829cdac
commit 4a11142072
3 changed files with 9 additions and 9 deletions

View File

@ -1529,7 +1529,7 @@ static int SQLITE_TCLAPI test_changegroup_cmd(
case 2: { /* output */
int nByte = 0;
const u8 *aByte = 0;
u8 *aByte = 0;
rc = sqlite3changegroup_output(p->pGrp, &nByte, (void**)&aByte);
if( rc!=SQLITE_OK ){
rc = test_session_error(interp, rc, 0);