Skip to content

Commit

Permalink
cachedb_redis: Fix compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
liviuchircu committed Jan 13, 2025
1 parent b1057bb commit be2d238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/cachedb_redis/cachedb_redis_dbase.c
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ int redis_query(cachedb_con *_con, const cdb_filter_t *filter, cdb_res_t *res)
if (key->type != REDIS_REPLY_STRING || val->type != REDIS_REPLY_ARRAY
|| val->elements != 2) {
LM_ERR("unexpected reply format at idx %d: %d/%d/%lu, filters: %s\n",
i, key->type, val->type, val->elements, argv[2]);
i, key->type, val->type, (long)val->elements, argv[2]);
goto error;
}

Expand Down

0 comments on commit be2d238

Please sign in to comment.