star-cad

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

commit a9e06df040df92a36bcbf1a2063681822ea14b1f
parent 379de06d892ede315f5979614dade1b01f4ae811
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Wed, 10 Jul 2024 15:10:22 +0200

Fix spelling in messages

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

diff --git a/src/scad_geometry.c b/src/scad_geometry.c @@ -123,7 +123,7 @@ mixed_dim_err_msg else if (*dim != d) { log_error(dev, "Dimension mismatch in %s operation creating '%s' geometry.\n", - op, (name ? name : "unamed")); + op, (name ? name : "unnamed")); return 1; } } @@ -1347,7 +1347,7 @@ scad_geometries_common_boundaries if(name) { log_message(dev, "Common boundary '%s' is empty.\n", name); } else { - log_message(dev, "Unamed common boundary %p is empty.\n", (void*)geom); + log_message(dev, "Unnamed common boundary %p is empty.\n", (void*)geom); } geom->gmsh_dimTags = NULL; } else {