diff options
author | drh <drh@noemail.net> | 2017-03-24 19:45:05 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-03-24 19:45:05 +0000 |
commit | ba7cce317bd8da97f01096fc3f0993d2f5c577f9 (patch) | |
tree | ea1c56754e6c88c8b65703f0c8527de5b04f4739 /ext/misc/json1.c | |
parent | 18333efd51814cecb3af5718abfbd867b10cd6a6 (diff) | |
download | sqlite-ba7cce317bd8da97f01096fc3f0993d2f5c577f9.tar.gz sqlite-ba7cce317bd8da97f01096fc3f0993d2f5c577f9.zip |
Fix a harmless compiler warning in the JSON1 extension.
FossilOrigin-Name: c2c3dd84534bb5ea81c974847b74a166c9cba1545fc749ce625929f303bf22e4
Diffstat (limited to 'ext/misc/json1.c')
-rw-r--r-- | ext/misc/json1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/json1.c b/ext/misc/json1.c index 268972630..756322913 100644 --- a/ext/misc/json1.c +++ b/ext/misc/json1.c @@ -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 ); |