From d43013048d58ca35689a748c511e8766ac37ec6e Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Mon, 29 Nov 2021 17:57:18 -0500 Subject: [PATCH] Corrected a recent line change to return "0" instead of void, per github Issue #104 by lantertronics. --- VERSION | 2 +- calma/CalmaWrite.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 9b5a4f16..d3eb500f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.232 +8.3.233 diff --git a/calma/CalmaWrite.c b/calma/CalmaWrite.c index c293a580..232e9e56 100644 --- a/calma/CalmaWrite.c +++ b/calma/CalmaWrite.c @@ -2908,7 +2908,7 @@ calmaPaintLabelFunc(tile, cos) if (IsSplit(tile)) return 0; /* Ignore non-Manhattan geometry */ if (!CalmaIsValidLayer(layer->cl_calmanum)) - return; + return 0; TiToRect(tile, &r);