Skip to content

Commit

Permalink
Fix keil compilation error (#418)
Browse files Browse the repository at this point in the history
* Fix compilation error when using the Keil tools with the Keil compiler.
  • Loading branch information
RichardBarry authored Nov 18, 2021
1 parent 6ac9aae commit e13f990
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -2756,11 +2756,10 @@ BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue )
const char * pcQueueName ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
{
UBaseType_t ux;
QueueRegistryItem_t * pxEntryToWrite = NULL;

configASSERT( xQueue );

QueueRegistryItem_t * pxEntryToWrite = NULL;

if( pcQueueName != NULL )
{
/* See if there is an empty space in the registry. A NULL name denotes
Expand Down

0 comments on commit e13f990

Please sign in to comment.