Nordix / hiredis-cluster

C client library for Valkey/Redis Cluster. This project is used and sponsored by Ericsson. It is a fork of the now unmaintained hiredis-vip.
BSD 3-Clause "New" or "Revised" License
86 stars 42 forks source link

Fix a compilation warning in command.c relating to kpos shadowing #201

Closed natoscott closed 5 months ago

natoscott commented 6 months ago

When building with the gcc -Wshadow option, a warning is generated in redis_parse_cmd() because the second and third declarations of the same-named kpos variable share scope. It's benign but it'd be great to have clean compilation when using this option.

natoscott commented 6 months ago

@zuiderkwast that's an excellent idea IMO.