summaryrefslogtreecommitdiff
path: root/src/plot/generic.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plot/generic.c')
-rw-r--r--src/plot/generic.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plot/generic.c b/src/plot/generic.c
index 0c3d9e8..87c55c5 100644
--- a/src/plot/generic.c
+++ b/src/plot/generic.c
@@ -605,13 +605,13 @@ copy(nsfb_t *nsfb, nsfb_bbox_t *srcbox, nsfb_bbox_t *dstbox)
static bool arc(nsfb_t *nsfb, int x, int y, int radius, int angle1, int angle2, nsfb_colour_t c)
{
- nsfb=nsfb;
- x = x;
- y = y;
- radius = radius;
- c = c;
- angle1=angle1;
- angle2=angle2;
+ UNUSED(nsfb);
+ UNUSED(x);
+ UNUSED(y);
+ UNUSED(radius);
+ UNUSED(c);
+ UNUSED(angle1);
+ UNUSED(angle2);
return true;
}