rsys

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

commit 09afde0d43483be679abb8dbc72fc4c5293cec7d
parent 699923bd024405432fe5f1529431f85f8a50b97f
Author: vaplv <vaplv@free.fr>
Date:   Fri, 20 Apr 2018 17:08:04 +0200

Fix a CL warning

Diffstat:
Msrc/test_mutex.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/test_mutex.c b/src/test_mutex.c @@ -201,7 +201,8 @@ test_mutex(void) string.str[0] = '\0'; string.i = 0; - CHK(string.mutex = mutex_create()); + string.mutex = mutex_create(); + CHK(string.mutex != NULL); time_current(&time_start);