diff options
author | Monty <monty@mariadb.org> | 2017-12-02 21:50:08 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2017-12-03 13:58:36 +0200 |
commit | 60df17e95ad7239e087f2c71a16b79a129755032 (patch) | |
tree | a00cb03ec23f7fb9e7f9000164305bde03af90a5 /strings | |
parent | 52ca07c2a0977f74ccfb56363e4158f0bd0ad3a0 (diff) | |
download | mariadb-git-60df17e95ad7239e087f2c71a16b79a129755032.tar.gz |
Remove compiler warnings
Diffstat (limited to 'strings')
-rw-r--r-- | strings/json_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/strings/json_lib.c b/strings/json_lib.c index 92967dfe400..625f6f8fff4 100644 --- a/strings/json_lib.c +++ b/strings/json_lib.c @@ -1386,7 +1386,7 @@ int json_find_paths_next(json_engine_t *je, json_find_paths_t *state) if (!json_key_matches(je, &key_name)) continue; } - if (cur_step - state->paths[p_c].last_step == state->cur_depth) + if ((uint) (cur_step - state->paths[p_c].last_step) == state->cur_depth) path_found= TRUE; else { @@ -1419,7 +1419,7 @@ int json_find_paths_next(json_engine_t *je, json_find_paths_t *state) cur_step->n_item == state->array_counters[state->cur_depth]) { /* Array item matches. */ - if (cur_step - state->paths[p_c].last_step == state->cur_depth) + if ((uint) (cur_step - state->paths[p_c].last_step) == state->cur_depth) path_found= TRUE; else { |