From b2b371f231bff1128480459ee47e8c491eff620b Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 16 Jan 2016 11:23:04 +0000 Subject: Fixed bug #691. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8762 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/osal/nil/osal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'os') diff --git a/os/hal/osal/nil/osal.h b/os/hal/osal/nil/osal.h index bde9aa44f..aac0d5e77 100644 --- a/os/hal/osal/nil/osal.h +++ b/os/hal/osal/nil/osal.h @@ -791,7 +791,7 @@ static inline void osalThreadQueueObjectInit(threads_queue_t *tqp) { static inline msg_t osalThreadEnqueueTimeoutS(threads_queue_t *tqp, systime_t time) { - return chSemWaitTimeout(&tqp->sem, time); + return chSemWaitTimeoutS(&tqp->sem, time); } /** -- cgit v1.2.3