star-stl

Load STereo Lithography (StL) file format
git clone git://git.meso-star.fr/star-stl.git
Log | Files | Refs | README | LICENSE

commit d235f6a31a51d1f6e0a710c8beeeaba8ee239070
parent 4286f29f9bae6b6eee49a62cc6bc1c54fc429921
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 23 Apr 2025 16:07:40 +0200

Fix of the constancy of the writer's 'verbose' variable

Diffstat:
Msrc/sstl.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sstl.h b/src/sstl.h @@ -74,7 +74,7 @@ struct sstl_writer_create_args { struct logger* logger; /* NULL <=> use default logger */ struct mem_allocator* allocator; /* NULL <=> use default allocator */ - const int verbose; /* verbose level */ + int verbose; /* verbosity level */ }; #define SSTL_WRITER_CREATE_ARGS_DEFAULT__ \ {NULL, NULL, SSTL_ASCII, NULL, -1, NULL, NULL, 0}