diff options
| author | Christian Beier <dontmind@freeshell.org> | 2016-04-12 21:14:36 +0200 | 
|---|---|---|
| committer | Christian Beier <dontmind@freeshell.org> | 2016-04-12 21:14:36 +0200 | 
| commit | d28d20f56dda39916befb762e62bb94f3f845a3a (patch) | |
| tree | 7384e6a5add1092571a1fb6f05ac97ded851c9b3 | |
| parent | 96a5111cba681ae846383753859f2d35e3395f91 (diff) | |
| parent | ab694621f5961d3ef6909373f7df4baceaaea746 (diff) | |
| download | libtdevnc-d28d20f56dda39916befb762e62bb94f3f845a3a.tar.gz libtdevnc-d28d20f56dda39916befb762e62bb94f3f845a3a.zip | |
Merge pull request #110 from AlexejStukov/patch-1
break statement out of case
| -rw-r--r-- | libvncclient/rfbproto.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/libvncclient/rfbproto.c b/libvncclient/rfbproto.c index fa46578..94b9bdb 100644 --- a/libvncclient/rfbproto.c +++ b/libvncclient/rfbproto.c @@ -1963,7 +1963,8 @@ HandleRFBServerMessage(rfbClient* client)  	  y += linesToRead;  	} -      } break; +	break; +      }         case rfbEncodingCopyRect:        { | 
