rsys

Basic data structures and low-level features
git clone git://git.meso-star.fr/rsys.git
Log | Files | Refs | README | LICENSE

commit ed2915ddbe0ac2694fd8f108f877f6c32ec713ef
parent 03b5f7c650e8419ca9f6244d94a8e7ab9c61c1bb
Author: vaplv <vaplv@free.fr>
Date:   Fri, 26 May 2017 14:38:41 +0200

Fix big_buffer compilation in debug

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

diff --git a/src/big_buffer.h b/src/big_buffer.h @@ -413,7 +413,7 @@ static INLINE const BIGBUF_DATA* BIGBUF_FUNC__(at)(struct BIGBUF__* bigbuf, const size_t at) { res_T res = RES_OK; (void)res; - ASSERT(bigbuf && data && at < bigbuf->size); + ASSERT(bigbuf && at < bigbuf->size); res = BIGBUF_FUNC__(fetch__)(bigbuf, at); ASSERT(res == RES_OK);