diff options
author | Eric Anholt <eric@anholt.net> | 2013-12-27 11:46:30 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2014-01-27 09:30:47 -0800 |
commit | 7f6e865359c2d055db4eb7d82b4779b3d7c5d264 (patch) | |
tree | 1f021011a80e1022681ce71aa4fac485e6793b86 /glamor/glamor_polyops.c | |
parent | 5f57d436c391c51f3f90958b033f6ee3eb7a1136 (diff) |
glamor: Fix some indent damage of putting a ' ' after the '*' for pointers.
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'glamor/glamor_polyops.c')
-rw-r--r-- | glamor/glamor_polyops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/glamor/glamor_polyops.c b/glamor/glamor_polyops.c index 99c4de970..1484d80f1 100644 --- a/glamor/glamor_polyops.c +++ b/glamor/glamor_polyops.c @@ -57,7 +57,7 @@ glamor_poly_point_nf(DrawablePtr pDrawable, GCPtr pGC, int mode, int npt, static Bool _glamor_poly_segment(DrawablePtr pDrawable, GCPtr pGC, int nseg, - xSegment * pSeg, Bool fallback) + xSegment *pSeg, Bool fallback) { if (!fallback && glamor_ddx_fallback_check_gc(pGC) && glamor_ddx_fallback_check_pixmap(pDrawable)) @@ -69,14 +69,14 @@ _glamor_poly_segment(DrawablePtr pDrawable, GCPtr pGC, int nseg, } void -glamor_poly_segment(DrawablePtr pDrawable, GCPtr pGC, int nseg, xSegment * pSeg) +glamor_poly_segment(DrawablePtr pDrawable, GCPtr pGC, int nseg, xSegment *pSeg) { _glamor_poly_segment(pDrawable, pGC, nseg, pSeg, TRUE); } Bool glamor_poly_segment_nf(DrawablePtr pDrawable, GCPtr pGC, int nseg, - xSegment * pSeg) + xSegment *pSeg) { return _glamor_poly_segment(pDrawable, pGC, nseg, pSeg, FALSE); } |