commit 0d8c8f49d7c06a75cfc1f99f3e39ca2c5b44feb4 parent 98263846262da3b902622c5c53920e822eeb7961 Author: Christophe Coustet <christophe.coustet@meso-star.com> Date: Mon, 18 Jul 2022 07:48:28 +0200 Fix warnongs Diffstat:
| M | src/scad_scene.h | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/scad_scene.h b/src/scad_scene.h @@ -25,7 +25,7 @@ struct scad_geometry; #include <rsys/hash_table.h> static INLINE char -name_eq(char* const* a, char* const* b) +name_eq(const char* const* a, const char* const* b) { ASSERT(a && b); return strcmp(*a, *b) == 0;