rngrd

Describe a surface and its physical properties
git clone git://git.meso-star.fr/rngrd.git
Log | Files | Refs | README | LICENSE

commit 2ed552549b08f385397aa4d3290797a48d478af3
parent 8ba095e887f8436e13a9be41029794a7b53e636f
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 21 Sep 2022 09:33:10 +0200

Minor internal function name change

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

diff --git a/src/rngrd_properties.c b/src/rngrd_properties.c @@ -86,7 +86,7 @@ error: } static res_T -parse_mtllst(struct rngrd* ground, const struct rngrd_create_args* args) +load_mtllst(struct rngrd* ground, const struct rngrd_create_args* args) { struct rnsl_create_args rnsl_args = RNSL_CREATE_ARGS_DEFAULT; struct rnsl* rnsl = NULL; @@ -140,7 +140,7 @@ setup_properties(struct rngrd* ground, const struct rngrd_create_args* args) res_T res = RES_OK; ASSERT(ground && args); - res = parse_mtllst(ground, args); + res = load_mtllst(ground, args); if(res != RES_OK) goto error; /* Create the Star-Buffer loader */