summaryrefslogtreecommitdiff
path: root/server/red_worker.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/red_worker.c')
-rw-r--r--server/red_worker.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/server/red_worker.c b/server/red_worker.c
index 09e40c1..728a536 100644
--- a/server/red_worker.c
+++ b/server/red_worker.c
@@ -2324,9 +2324,8 @@ static int is_equal_brush(SpiceBrush *b1, SpiceBrush *b2)
// partial imp
static int is_equal_line_attr(SpiceLineAttr *a1, SpiceLineAttr *a2)
{
- return a1->flags == a2->flags && a1->join_style == a2->join_style &&
- a1->end_style == a2->end_style && a1->style_nseg == a2->style_nseg &&
- a1->width == a2->width && a1->miter_limit == a2->miter_limit &&
+ return a1->flags == a2->flags &&
+ a1->style_nseg == a2->style_nseg &&
a1->style_nseg == 0;
}