1
0
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:
drh
2023-05-01 18:52:35 +00:00
parent abdcfcef83
commit 59fe13e39a
6 changed files with 17 additions and 18 deletions

View File

@ -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;