stardis

Perform coupled heat transfer calculations
git clone git://git.meso-star.fr/stardis.git
Log | Files | Refs | README | LICENSE

commit 995b5d935a2493ea55c67b97082f809b7a22dea2
parent f0497ffd06fd9ceea9113104410a454b23e2fde2
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Thu,  8 Nov 2018 16:01:19 +0100

Fix Release build

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

diff --git a/src/stardis-app.c b/src/stardis-app.c @@ -69,7 +69,7 @@ static char** split_line(char* a_str, const char a_delim) while (token) { - assert(idx < count); + ASSERT(idx < count); #ifdef COMPILER_CL *(result + idx++) = _strdup(token); #else @@ -77,7 +77,7 @@ static char** split_line(char* a_str, const char a_delim) #endif token = strtok(0, delim); } - assert(idx == count - 1); + ASSERT(idx == count - 1); *(result + idx) = 0; }