From ae6c8bc9ed04b8eec2a61a8305f55c6542f99c10 Mon Sep 17 00:00:00 2001 From: David Chalco Date: Mon, 22 Jun 2020 14:04:25 -0700 Subject: [PATCH] Append period at end of comment. To be consistent with file. --- queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queue.c b/queue.c index 29bd06d9c..61d185840 100644 --- a/queue.c +++ b/queue.c @@ -378,7 +378,7 @@ Queue_t * const pxQueue = xQueue; zero in the case the queue is used as a semaphore. */ xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - /* Check for multiplication overflow */ + /* Check for multiplication overflow. */ configASSERT( uxItemSize == 0 || uxQueueLength == xQueueSizeInBytes / uxItemSize ); /* Allocate the queue and storage area. Justification for MISRA