star-stl

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

commit 82a943d175a14a668992705ff46ffd92ee30a5e3
parent 1914463852d767245d13eb1360978312d80a0b4e
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue,  2 May 2023 11:08:50 +0200

Fix a pre-processing error

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

diff --git a/src/sstl.c b/src/sstl.c @@ -630,7 +630,7 @@ error: #if defined(COMPILER_GCC) #define FTELL(P, S) \ if(-1L == ((P) = ftell(S))) { res = RES_IO_ERR; goto error; } -#elif deined(COMPILER_CL) +#elif defined(COMPILER_CL) #define FTELL(S) \ if(-1L == ((P) = _ftelli64(S))) { res = RES_IO_ERR; goto error; } #else