diff options
author | Pierre Ossman <ossman@cendio.se> | 2015-09-29 15:43:46 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2015-09-29 15:43:46 +0200 |
commit | 158e69d735f307cb29110d381df8badfb930eb5c (patch) | |
tree | 1772429e598f723c863e4f1d8b5f60c5557a933b | |
parent | 063df03295d8b1477a292b4415e7d90a68c477d0 (diff) | |
download | tigervnc-158e69d735f307cb29110d381df8badfb930eb5c.tar.gz tigervnc-158e69d735f307cb29110d381df8badfb930eb5c.zip |
Don't shadow member variable
-rw-r--r-- | common/rfb/ListConnInfo.h | 2 |
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(); |