Fix variable shadowing in procarray.c. ProcArrayGroupClearXid function has a parameter named "proc", but the same name was used for its local variables. This commit fixes this variable shadowing, to improve code readability.
Back-patch to all supported versions, to make future back-patching easy though this patch is classified as refactoring only. Reported-by: Ranier Vilela Author: Ranier Vilela, Aleksander Alekseev https://postgr.es/m/caeudqaqyotzc670xwi6w-oe2_bk1bfu2jzxz6xrfiouzm7x...@mail.gmail.com Branch ------ REL_10_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/639d731acc2b6a998e262a29d5a4a6f5b3340952 Modified Files -------------- src/backend/storage/ipc/procarray.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-)