From 9fe7bf4ab75135d68b4923b89df6fcc70a0e72dc Mon Sep 17 00:00:00 2001 From: "R. Timothy Edwards" Date: Sun, 27 Jul 2025 21:02:40 -0400 Subject: [PATCH] Fixed an issue with a non-boolean variable in DBtiles.c being cast as "bool", causing issues with the proper/strict use of the "bool" type. Changed the version back so that it will update the github mirror tonight, since the current version appears to be working. --- VERSION | 2 +- database/DBtiles.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index bf1de9c2..499be463 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.531 +8.3.532 diff --git a/database/DBtiles.c b/database/DBtiles.c index 52782410..4d4662a5 100644 --- a/database/DBtiles.c +++ b/database/DBtiles.c @@ -111,7 +111,7 @@ DBSrPaintNMArea(hintTile, plane, ttype, rect, mask, func, arg) TileType tpt; int rheight, rwidth, rmax; dlong f1, f2, f3, f4; - bool ignore_sides; + int ignore_sides; /* If the search area is not diagonal, return the result of the */ /* standard (manhattan) search function. */