From 158e69d735f307cb29110d381df8badfb930eb5c Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 29 Sep 2015 15:43:46 +0200 Subject: [PATCH] Don't shadow member variable --- common/rfb/ListConnInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rfb/ListConnInfo.h b/common/rfb/ListConnInfo.h index cabcbc79..9e939d1e 100644 --- a/common/rfb/ListConnInfo.h +++ b/common/rfb/ListConnInfo.h @@ -79,7 +79,7 @@ namespace rfb { int iGetStatus() { return *si;} - void iSetStatus( int status) { *si = status;} + void iSetStatus(int istatus) { *si = istatus;} void Copy(ListConnInfo* InputList) { Clear(); -- 2.39.5