diff options
author | Zdenek Kabelac <zkabelac@redhat.com> | 2013-11-25 09:09:30 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-11-25 10:04:49 +0000 |
commit | a110637ef2a37505ee68447cf66763af4cabfc00 (patch) | |
tree | 8579ea906b3d4d0514a4b2a281e131dc5c909e0b /src/legacy | |
parent | b419691e277af0881baa7daac17af424dc1337b1 (diff) |
Fix indentation for incorrectly shifted statements
Signed-off-by: Zdenek Kabelac <zkabelac@redhat.com>
Diffstat (limited to 'src/legacy')
-rw-r--r-- | src/legacy/i810/i810_cursor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/legacy/i810/i810_cursor.c b/src/legacy/i810/i810_cursor.c index 2ac03e9b..98cc36a0 100644 --- a/src/legacy/i810/i810_cursor.c +++ b/src/legacy/i810/i810_cursor.c @@ -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++) |