diff options
author | mistachkin <mistachkin@noemail.net> | 2017-04-14 14:50:34 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2017-04-14 14:50:34 +0000 |
commit | b1ed717f18d1e08c6c2ab52c020a4b0748302b1a (patch) | |
tree | 5ced4402a3f3af11dea05bc85de63a6cd3159a9f /ext/misc/json1.c | |
parent | d97cda43ab731572c7a4366a424ebd5f6f062fca (diff) | |
download | sqlite-b1ed717f18d1e08c6c2ab52c020a4b0748302b1a.tar.gz sqlite-b1ed717f18d1e08c6c2ab52c020a4b0748302b1a.zip |
Make USE_FULLWARN=1 the default for MSVC and fix harmless compiler warnings.
FossilOrigin-Name: 6bf673767b8e5cedef1acff795cbe524fab8db2525c06424db4e038934a33936
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 60a34539a..2ef6e128e 100644 --- a/ext/misc/json1.c +++ b/ext/misc/json1.c @@ -1405,7 +1405,7 @@ static void jsonExtractFunc( */ static JsonNode *jsonMergePatch( JsonParse *pParse, /* The JSON parser that contains the TARGET */ - int iTarget, /* Node of the TARGET in pParse */ + u32 iTarget, /* Node of the TARGET in pParse */ JsonNode *pPatch /* The PATCH */ ){ u32 i, j; |