]> source.dussan.org Git - tigervnc.git/commitdiff
[Bugfix] Remove "unused-but-set" variable from tightDecode.h.
authorAdam Tkac <atkac@redhat.com>
Mon, 21 Feb 2011 11:58:06 +0000 (11:58 +0000)
committerAdam Tkac <atkac@redhat.com>
Mon, 21 Feb 2011 11:58:06 +0000 (11:58 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4298 3789f03b-4d11-0410-bbf8-ca57d06f2519

common/rfb/tightDecode.h

index d0f7b68a60998f861076a81c83de79b4ea3aa67d..29177266bc30d5cd8e1b1e06ce2fa941e0e035e3 100644 (file)
@@ -184,12 +184,11 @@ void TIGHT_DECODE (const Rect& r, rdr::InStream* is,
       }
     }
   } else {
-    int x, y, b, w;
+    int x, y, b;
     PIXEL_T *ptr = buf;
     rdr::U8 bits;
     if (palSize <= 2) {
       // 2-color palette
-      w = (r.width() + 7) / 8;
       for (y = 0; y < r.height(); y++) {
         for (x = 0; x < r.width() / 8; x++) {
           bits = input->readU8();