]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/include/list.h
TimerHandle_t is now type safe instead of void *.
[freertos] / FreeRTOS / Source / include / list.h
index 2ec4a67c9d106c7ae462723c5151856f8a990a4c..6457258b2f7bdd2a5da32fa660a0efcaaef7826a 100644 (file)
@@ -315,7 +315,7 @@ List_t * const pxConstList = ( pxList );                                                                                                    \
  * @param pxListItem The list item we want to know if is in the list.\r
  * @return pdTRUE if the list item is in the list, otherwise pdFALSE.\r
  */\r
-#define listIS_CONTAINED_WITHIN( pxList, pxListItem ) ( ( ( pxListItem )->pxContainer == ( pxList ) ) ? pdTRUE : pdFALSE )\r
+#define listIS_CONTAINED_WITHIN( pxList, pxListItem ) ( ( ( pxListItem )->pxContainer == ( pxList ) ) ? ( pdTRUE ) : ( pdFALSE ) )\r
 \r
 /*\r
  * Return the list a list item is contained within (referenced from).\r