mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix a harmless compiler warning in the sessionAppendDelete() function.
FossilOrigin-Name: 1324d08d0c639378cf1b03bd6410db81947747ac
This commit is contained in:
@ -1621,7 +1621,7 @@ static int sessionAppendDelete(
|
||||
}
|
||||
}
|
||||
if( abPK[i] ){
|
||||
sessionAppendBlob(pBuf, pStart, a-pStart, &rc);
|
||||
sessionAppendBlob(pBuf, pStart, (int)(a-pStart), &rc);
|
||||
}
|
||||
}
|
||||
assert( (a - p->aRecord)==p->nRecord );
|
||||
|
Reference in New Issue
Block a user