Skip to content

Commit c246922

Browse files
Small typo on L1287 (#14)
Added a missing ')'
1 parent 88e3232 commit c246922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queue.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ Queue_t * const pxQueue = xQueue;
12841284
configASSERT( ( pxQueue ) );
12851285

12861286
/* The buffer into which data is received can only be NULL if the data size
1287-
is zero (so no data is copied into the buffer. */
1287+
is zero (so no data is copied into the buffer). */
12881288
configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) );
12891289

12901290
/* Cannot block if the scheduler is suspended. */

0 commit comments

Comments
 (0)