From 2084fa237312d9f4d5207821a06b1ad36af5b928 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 29 Aug 2021 12:36:47 -0700 Subject: [PATCH] change ellipse.c #if STANDALONE to #ifdef From later usage of this macro in the same file, it looks like this is what was intended. Squashes a -Wundef build warning. --- lib/common/ellipse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/ellipse.c b/lib/common/ellipse.c index 97c0dfa20..ceb983bc3 100644 --- a/lib/common/ellipse.c +++ b/lib/common/ellipse.c @@ -47,7 +47,7 @@ */ #include -#if STANDALONE +#ifdef STANDALONE #include #include #include -- 2.40.0