atrtp

Thermodynamic properties of a medium in combustion
git clone git://git.meso-star.fr/atrtp.git
Log | Files | Refs | README | LICENSE

commit e8e96e9dac3f00e5bcf9f46abfa6c3da647a54ac
parent 30bd8591a0a2147c306d3ac6eb4e104fe4e43661
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue, 12 Jan 2021 15:07:18 +0100

Fix compilation in debug

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

diff --git a/src/atrtp.h b/src/atrtp.h @@ -103,7 +103,7 @@ atrtp_desc_get_node_properties (const struct atrtp_desc* desc, const size_t inode) { - ASSERT(desc && icell < desc->nnodes); + ASSERT(desc && inode < desc->nnodes); return desc->properties + inode*ATRTP_COUNT__; }