From c246922ea10cd9c482a74357baf20ee605b096b1 Mon Sep 17 00:00:00 2001 From: AniruddhaKanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 19 Feb 2020 14:05:48 -0800 Subject: [PATCH] Small typo on L1287 (#14) Added a missing ')' --- queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queue.c b/queue.c index e35055fa9..14ad01ec9 100644 --- a/queue.c +++ b/queue.c @@ -1284,7 +1284,7 @@ Queue_t * const pxQueue = xQueue; configASSERT( ( pxQueue ) ); /* The buffer into which data is received can only be NULL if the data size - is zero (so no data is copied into the buffer. */ + is zero (so no data is copied into the buffer). */ configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); /* Cannot block if the scheduler is suspended. */