diff options
author | Eric Anholt <anholt@freebsd.org> | 2005-08-30 03:42:07 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2005-08-30 03:42:07 +0000 |
commit | f20e845b04dee5fc0780811f565180e322b60b73 (patch) | |
tree | b944ae7ad374dddb055f4ba1bfeea50cfab5d35b /fb | |
parent | 7777d325a3d049cc233c004cba288ed5d10539c2 (diff) |
More 0 -> NULL for pointers missed in previous commit to this file.
Diffstat (limited to 'fb')
-rw-r--r-- | fb/fbcompose.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/fb/fbcompose.c b/fb/fbcompose.c index 655a53afe..cbb5b5797 100644 --- a/fb/fbcompose.c +++ b/fb/fbcompose.c @@ -1,5 +1,5 @@ /* - * $XdotOrg: xc/programs/Xserver/fb/fbcompose.c,v 1.19 2005/08/12 18:50:33 sandmann Exp $ + * $XdotOrg: xc/programs/Xserver/fb/fbcompose.c,v 1.20 2005/08/30 03:01:38 anholt Exp $ * $XFree86: xc/programs/Xserver/fb/fbcompose.c,v 1.17tsi Exp $ * * Copyright © 2000 Keith Packard, member of The XFree86 Project, Inc. @@ -2547,7 +2547,7 @@ fbCombineConjointXorC (CARD32 *dest, CARD32 *src, CARD32 *mask, int width) static CombineFuncC fbCombineFuncC[] = { fbCombineClearC, fbCombineSrcC, - 0, /* Dest */ + NULL, /* Dest */ fbCombineOverC, fbCombineOverReverseC, fbCombineInC, @@ -2559,11 +2559,11 @@ static CombineFuncC fbCombineFuncC[] = { fbCombineXorC, fbCombineAddC, fbCombineSaturateC, - 0, - 0, + NULL, + NULL, fbCombineClearC, /* 0x10 */ fbCombineSrcC, - 0, /* Dest */ + NULL, /* Dest */ fbCombineDisjointOverC, fbCombineSaturateC, /* DisjointOverReverse */ fbCombineDisjointInC, @@ -2573,13 +2573,13 @@ static CombineFuncC fbCombineFuncC[] = { fbCombineDisjointAtopC, fbCombineDisjointAtopReverseC, fbCombineDisjointXorC, /* 0x1b */ - 0, - 0, - 0, - 0, + NULL, + NULL, + NULL, + NULL, fbCombineClearC, fbCombineSrcC, - 0, /* Dest */ + NULL, /* Dest */ fbCombineConjointOverC, fbCombineConjointOverReverseC, fbCombineConjointInC, |