diff options
author | James Cloos <cloos@jhcloos.com> | 2008-11-08 12:18:13 -0500 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2008-11-08 12:21:20 -0500 |
commit | b3c7e62664457a3802ebc23785446051624a8c2f (patch) | |
tree | ee5b7c80a614aca1f52fb8b0efb12d3689d7c767 /mi/mifillarc.c | |
parent | 21c116219cd5c6845a0955f2d88fdb5fab5c17cf (diff) |
Remove some null statements.
Remove several doubled statement-terminal semicolons.
Reported by Fernando Carrijo.
Diffstat (limited to 'mi/mifillarc.c')
-rw-r--r-- | mi/mifillarc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mi/mifillarc.c b/mi/mifillarc.c index 2ca6a4d77..f2ab5ceb1 100644 --- a/mi/mifillarc.c +++ b/mi/mifillarc.c @@ -779,7 +779,7 @@ miPolyFillArc(DrawablePtr pDraw, GCPtr pGC, int narcs, xArc *parcs) for(i = narcs, arc = parcs; --i >= 0; arc++) { if (miFillArcEmpty(arc)) - continue;; + continue; if ((arc->angle2 >= FULLCIRCLE) || (arc->angle2 <= -FULLCIRCLE)) { if (miCanFillArc(arc)) |