mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-12 00:57:44 -04:00
Small typo on L1287
Added a missing ')'
This commit is contained in:
parent
87beba4a4a
commit
2f7980a846
1 changed files with 1 additions and 1 deletions
2
queue.c
2
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. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue