star-mesh

Define and load a binary data format for meshes
git clone git://git.meso-star.fr/star-mesh.git
Log | Files | Refs | README | LICENSE

commit 1f5d6d1a7b281ead607b35c86b481196fc081df7
parent 99d338ab3c4395e68cb18b2a958240a80e1428e6
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 28 Feb 2025 08:56:40 +0100

Make const the filename parsed by smsh-desc util

Diffstat:
Msrc/smsh-desc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/smsh-desc.c b/src/smsh-desc.c @@ -35,7 +35,7 @@ enum query_flag { /* Input arguments */ struct args { - char* mesh; + const char* mesh; int query_mask; /* Cmbination of query flag */ }; static const struct args ARGS_DEFAULT = {0};