From f7b5f384612dc809410e5a2ad96c0d0d039a719e Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Sun, 19 Jul 2020 17:08:51 -0400 Subject: [PATCH] Corrected an error in the last commit in which I expanded the body of a "for" loop in extract/ExtHier.c from one line to two but failed to then put braces around the whole loop. --- VERSION | 2 +- extract/ExtHier.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 96d5f4df..448d2739 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.36 +8.3.37 diff --git a/extract/ExtHier.c b/extract/ExtHier.c index 7f7e58ec..73fa39e6 100644 --- a/extract/ExtHier.c +++ b/extract/ExtHier.c @@ -291,7 +291,7 @@ extHierConnectFunc1(oneTile, ha) // node only describes a single point. for (lab = cumDef->cd_labels; lab; lab = lab->lab_next) - + { // All sticky labels are at the front of the list in cumDef, so // stop when we see the first non-sticky label. if (!(lab->lab_flags & LABEL_STICKY)) break; @@ -355,6 +355,7 @@ extHierConnectFunc1(oneTile, ha) #endif } + } return (0); }