diff options
author | Julien Cristau <jcristau@debian.org> | 2009-01-11 08:16:12 +0100 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2009-01-11 08:54:10 +0100 |
commit | 292311b421e53ead53c7df67d735a3d6d3e5b515 (patch) | |
tree | 0eb77efe0dcab7b7417e087aac069135c162a73c /Xext/xace.c | |
parent | 7a05c8b1e70680ddd3b3e09ad448788f8d70a428 (diff) |
Xext: ANSI cleanups
Diffstat (limited to 'Xext/xace.c')
-rw-r--r-- | Xext/xace.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/Xext/xace.c b/Xext/xace.c index 7e82f810d..86d70fe74 100644 --- a/Xext/xace.c +++ b/Xext/xace.c @@ -244,15 +244,14 @@ int XaceHook(int hook, ...) * region of the window will be destroyed (overwritten) in pBuf. */ void -XaceCensorImage(client, pVisibleRegion, widthBytesLine, pDraw, x, y, w, h, - format, pBuf) - ClientPtr client; - RegionPtr pVisibleRegion; - long widthBytesLine; - DrawablePtr pDraw; - int x, y, w, h; - unsigned int format; - char * pBuf; +XaceCensorImage( + ClientPtr client, + RegionPtr pVisibleRegion, + long widthBytesLine, + DrawablePtr pDraw, + int x, int y, int w, int h, + unsigned int format, + char *pBuf) { ScreenPtr pScreen; RegionRec imageRegion; /* region representing x,y,w,h */ |