treewide: fix indentions got broke by recent commit

Commit f26f17c66a broke some indentions,
fixing them now.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1662>
(cherry picked from commit c4481fc20f)
This commit is contained in:
Enrico Weigelt, metux IT consult
2024-08-27 20:08:02 +02:00
committed by Alan Coopersmith
parent 797b3c6c31
commit faf2e3dcc4
4 changed files with 28 additions and 20 deletions

View File

@@ -553,10 +553,11 @@ compNewPixmap(WindowPtr pWin, int x, int y, int w, int h)
ChangeGC(NullClient, pGC, GCSubwindowMode, &val);
ValidateGC(&pPixmap->drawable, pGC);
(void) (*pGC->ops->CopyArea) (&pParent->drawable,
&pPixmap->drawable,
pGC,
x - pParent->drawable.x,
y - pParent->drawable.y, w, h, 0, 0);
&pPixmap->drawable,
pGC,
x - pParent->drawable.x,
y - pParent->drawable.y,
w, h, 0, 0);
FreeScratchGC(pGC);
}
}