Skip to content

Commit

Permalink
Small typo on L1287 (FreeRTOS#14)
Browse files Browse the repository at this point in the history
Added a missing ')'
  • Loading branch information
AniruddhaKanhere authored Feb 19, 2020
1 parent 88e3232 commit c246922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit c246922

Please sign in to comment.