summaryrefslogtreecommitdiff
path: root/src/rotrect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rotrect.c')
-rw-r--r--src/rotrect.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rotrect.c b/src/rotrect.c
index 6721d10..f01c297 100644
--- a/src/rotrect.c
+++ b/src/rotrect.c
@@ -46,10 +46,10 @@ rotrect_draw(Rect rect, double x, double y)
round(rect.y0 + y), round(rect.y1) + y,
round(rect.y2 + y), round(rect.y3) + y,
};
- LZY_DrawLine(xs[0], ys[0], xs[1], ys[1]);
- LZY_DrawLine(xs[1], ys[1], xs[2], ys[2]);
- LZY_DrawLine(xs[2], ys[2], xs[3], ys[3]);
- LZY_DrawLine(xs[3], ys[3], xs[0], ys[0]);
+ (void)LZY_DrawLine(xs[0], ys[0], xs[1], ys[1]);
+ (void)LZY_DrawLine(xs[1], ys[1], xs[2], ys[2]);
+ (void)LZY_DrawLine(xs[2], ys[2], xs[3], ys[3]);
+ (void)LZY_DrawLine(xs[3], ys[3], xs[0], ys[0]);
}
void