From 98975f9f850cb5fa8fc80dee8f7c359cac3c26da Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 29 Aug 2021 12:20:25 -0700 Subject: [PATCH] remove some unused struct names --- lib/common/ellipse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/common/ellipse.c b/lib/common/ellipse.c index 5d0e9a983..afe2f63db 100644 --- a/lib/common/ellipse.c +++ b/lib/common/ellipse.c @@ -61,10 +61,10 @@ #define PI 3.14159265358979323846 -typedef struct pointf_s { +typedef struct { double x, y; } pointf; -typedef struct Ppoly_t { +typedef struct { pointf *ps; int pn; } Ppoly_t; -- 2.40.0