summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2015-09-29 15:43:46 +0200
committerPierre Ossman <ossman@cendio.se>2015-09-29 15:43:46 +0200
commit158e69d735f307cb29110d381df8badfb930eb5c (patch)
tree1772429e598f723c863e4f1d8b5f60c5557a933b
parent063df03295d8b1477a292b4415e7d90a68c477d0 (diff)
downloadtigervnc-158e69d735f307cb29110d381df8badfb930eb5c.tar.gz
tigervnc-158e69d735f307cb29110d381df8badfb930eb5c.zip
Don't shadow member variable
-rw-r--r--common/rfb/ListConnInfo.h2
1 files changed, 1 insertions, 1 deletions
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();