diff options
Diffstat (limited to 'iplan2p4/iplbitblt.c')
-rw-r--r-- | iplan2p4/iplbitblt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/iplan2p4/iplbitblt.c b/iplan2p4/iplbitblt.c index 50927e14f..27470382b 100644 --- a/iplan2p4/iplbitblt.c +++ b/iplan2p4/iplbitblt.c @@ -1,4 +1,4 @@ -/* $XFree86: xc/programs/Xserver/iplan2p4/iplbitblt.c,v 3.1 1998/03/20 21:08:08 hohndel Exp $ */ +/* $XFree86: xc/programs/Xserver/iplan2p4/iplbitblt.c,v 3.2 2003/11/10 18:22:45 tsi Exp $ */ /* * ipl copy area */ @@ -231,7 +231,7 @@ iplBitBlt (pSrcDrawable, pDstDrawable, /* Check to see if the region is empty */ if (fastBox.x1 >= fastBox.x2 || fastBox.y1 >= fastBox.y2) { - REGION_INIT(pGC->pScreen, &rgnDst, NullBox, 0); + REGION_NULL(pGC->pScreen, &rgnDst); } else { @@ -244,7 +244,7 @@ iplBitBlt (pSrcDrawable, pDstDrawable, a full blown region. It is intersected with the composite clip below. */ fastClip = 0; - REGION_INIT(pGC->pScreen, &rgnDst, &fastBox,1); + REGION_INIT(pGC->pScreen, &rgnDst, &fastBox, 1); } } else |