From 6b91516e7604bd3d0fb801418be32f04940ecff7 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Mon, 7 Sep 2020 17:25:47 -0700 Subject: [PATCH] squash a -Wundef warning --- lib/common/shapes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/shapes.c b/lib/common/shapes.c index 2a6a32b58..14f0c7add 100644 --- a/lib/common/shapes.c +++ b/lib/common/shapes.c @@ -3500,7 +3500,7 @@ static void pos_reclbl(field_t * f, pointf ul, int sides) } } -#if DEBUG > 1 +#if defined(DEBUG) && DEBUG > 1 static void indent(int l) { int i; -- 2.50.1