1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix a harmless compiler warning in the JSON1 extension.

FossilOrigin-Name: c2c3dd84534bb5ea81c974847b74a166c9cba1545fc749ce625929f303bf22e4
This commit is contained in:
drh
2017-03-24 19:45:05 +00:00
parent 18333efd51
commit ba7cce317b
3 changed files with 8 additions and 8 deletions

View File

@ -1397,7 +1397,7 @@ static JsonNode *jsonMergePatch(
}
iRoot = iTarget;
for(i=1; i<pPatch->n; i += jsonNodeSize(&pPatch[i+1])+1){
int nKey;
u32 nKey;
const char *zKey;
assert( pPatch[i].eType==JSON_STRING );
assert( pPatch[i].jnFlags & JNODE_LABEL );