]> granicus.if.org Git - graphviz/commitdiff
change ellipse.c #if STANDALONE to #ifdef
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 29 Aug 2021 19:36:47 +0000 (12:36 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 4 Sep 2021 03:28:42 +0000 (20:28 -0700)
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

index 97c0dfa209e17b35750548180b8e522b6bcce269..ceb983bc33d4e77921face4aec508700220b3aa8 100644 (file)
@@ -47,7 +47,7 @@
  */
 
 #include <stdbool.h>
-#if STANDALONE
+#ifdef STANDALONE
 #include <limits.h>
 #include <math.h>
 #include <stdlib.h>