mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-01 06:27:03 +03:00
Fix harmless compiler warnings.
FossilOrigin-Name: 0a926994691ccb02ea4f0ba3c2e8f728871ae67d24c705fbc0f7af81f38d5f47
This commit is contained in:
@ -1102,7 +1102,7 @@ static int sessionTableInfo(
|
||||
|
||||
i = 0;
|
||||
if( bRowid ){
|
||||
int nName = strlen(SESSIONS_ROWID);
|
||||
size_t nName = strlen(SESSIONS_ROWID);
|
||||
memcpy(pAlloc, SESSIONS_ROWID, nName+1);
|
||||
azCol[i] = (char*)pAlloc;
|
||||
pAlloc += nName+1;
|
||||
|
Reference in New Issue
Block a user