diff options
Diffstat (limited to 'hw/xnest/GCOps.c')
-rw-r--r-- | hw/xnest/GCOps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xnest/GCOps.c b/hw/xnest/GCOps.c index 6b76fc28b..829b86b2b 100644 --- a/hw/xnest/GCOps.c +++ b/hw/xnest/GCOps.c @@ -117,7 +117,7 @@ xnestGetImage(DrawablePtr pDrawable, int x, int y, int w, int h, static Bool xnestBitBlitPredicate(Display *display, XEvent *event, char *args) { - return (event->type == GraphicsExpose || event->type == NoExpose); + return event->type == GraphicsExpose || event->type == NoExpose; } static RegionPtr @@ -158,7 +158,7 @@ xnestBitBlitHelper(GCPtr pGC) RegionDestroy(pTmpReg); RegionValidate(pReg, &overlap); - return(pReg); + return pReg; } } |