Fix indentation for incorrectly shifted statements
authorZdenek Kabelac <zkabelac@redhat.com>
Mon, 25 Nov 2013 08:09:30 +0000 (09:09 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Mon, 25 Nov 2013 10:04:49 +0000 (10:04 +0000)
Signed-off-by: Zdenek Kabelac <zkabelac@redhat.com>
src/legacy/i810/i810_cursor.c
src/sna/sna_blt.c

index 2ac03e9..98cc36a 100644 (file)
@@ -132,8 +132,8 @@ static void I810LoadCursorARGB (ScrnInfoPtr pScrn, CursorPtr pCurs)
    {
       for (x = 0; x < w; x++)
          *pcurs++ = *image++;
-         for (; x < 64; x++)
-            *pcurs++ = 0;
+      for (; x < 64; x++)
+         *pcurs++ = 0;
    }
 
    for (; y < 64; y++)
index 8f7b8a3..32179bf 100644 (file)
@@ -2355,9 +2355,9 @@ fill:
                        hint |= PREFER_GPU;
                        if (dst->pCompositeClip->data == NULL && (width | height))
                                hint |= IGNORE_CPU;
-                               if (width == tmp->dst.pixmap->drawable.width &&
-                                   height == tmp->dst.pixmap->drawable.height)
-                                       hint |= REPLACES;
+                       if (width == tmp->dst.pixmap->drawable.width &&
+                           height == tmp->dst.pixmap->drawable.height)
+                               hint |= REPLACES;
                }
                tmp->dst.bo = sna_drawable_use_bo(dst->pDrawable, hint,
                                                  &dst_box, &tmp->damage);