Skip to content

Commit

Permalink
Code style changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Jan 24, 2023
1 parent 010bbd2 commit ddb90b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MagickCore/draw.c
Expand Up @@ -4407,7 +4407,7 @@ static MagickBooleanType RenderMVGContent(Image *image,
}
}
mvg_info.offset=i;
if (status == 0)
if (status == MagickFalse)
break;
primitive_info[i].primitive=UndefinedPrimitive;
if ((draw_info->debug != MagickFalse) && (q > p))
Expand All @@ -4418,12 +4418,12 @@ static MagickBooleanType RenderMVGContent(Image *image,
status&=CheckPrimitiveExtent(&mvg_info,ExpandAffine(
&graphic_context[n]->affine));
primitive_info=(*mvg_info.primitive_info);
if (status == 0)
if (status == MagickFalse)
break;
status&=CheckPrimitiveExtent(&mvg_info,(double)
graphic_context[n]->stroke_width);
primitive_info=(*mvg_info.primitive_info);
if (status == 0)
if (status == MagickFalse)
break;
if (i == 0)
continue;
Expand Down

0 comments on commit ddb90b8

Please sign in to comment.