From 1fdfa6480da81e2385f0dd77e4f84fc51c05083c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= <joakim.nohlgard@eistec.se> Date: Sun, 25 Mar 2018 09:05:58 +0200 Subject: [PATCH] core/mutex: fix -fpermissive warning in C++ mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit g++ gives the error message "error: invalid conversion from ‘void*’ to ‘list_node*’ [-fpermissive]" --- core/include/mutex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/include/mutex.h b/core/include/mutex.h index 01b43c063c..9a29eb5f7e 100644 --- a/core/include/mutex.h +++ b/core/include/mutex.h @@ -58,7 +58,7 @@ typedef struct { * @brief This is the value of the mutex when locked and no threads are waiting * for it */ -#define MUTEX_LOCKED ((void *)-1) +#define MUTEX_LOCKED ((list_node_t *)-1) /** * @endcond */ -- GitLab