star-cad

Geometric operators for computer-aided design
git clone git://git.meso-star.fr/star-cad.git
Log | Files | Refs | README | LICENSE

commit c127175d8610c030bd6aa997832c1152abb46cdb
parent f195bb985476d05686e4f01c8f18519cd8adcbf0
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Wed, 15 Oct 2025 11:48:48 +0200

Fix log messages

Diffstat:
Msrc/scad_geometry.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/scad_geometry.c b/src/scad_geometry.c @@ -2013,7 +2013,7 @@ scad_geometries_common_boundaries c = tagoutn / 2; if(tagoutn == 0) { - log_message(dev, "Common boundary list is empty.\n"); + log_message(dev, "Common boundaries list is empty.\n"); goto exit; } @@ -2088,8 +2088,8 @@ exit: error: if(ierr) { int dim = INT_MAX; - if(!mixed_dim_err_msg("common boundary", geometries, geometries_count, &dim)) - mixed_dim_err_msg("common boundary", tools, tools_count, &dim); + if(!mixed_dim_err_msg("common boundaries", geometries, geometries_count, &dim)) + mixed_dim_err_msg("common boundaries", tools, tools_count, &dim); } if(out_geom) { for(i = 0; i < c; i++) {