From 1ad80e7b3b3558ed1a75df9b377a036614b88f6d Mon Sep 17 00:00:00 2001 From: RichardBarry Date: Sun, 16 Nov 2008 17:13:55 +0000 Subject: [PATCH] Removed unwanted white space at the end of a macro continuation. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@547 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Demo/Common/Minimal/IntQueue.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Demo/Common/Minimal/IntQueue.c b/Demo/Common/Minimal/IntQueue.c index b225799d1..06da892e6 100644 --- a/Demo/Common/Minimal/IntQueue.c +++ b/Demo/Common/Minimal/IntQueue.c @@ -131,7 +131,7 @@ from within the interrupts. */ uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); \ { \ uxValueForNormallyFullQueue++; \ - xQueueSendFromISR( xNormallyFullQueue, ( void * ) &uxValueForNormallyFullQueue, &xHigherPriorityTaskWoken ); \ + xQueueSendFromISR( xNormallyFullQueue, ( void * ) &uxValueForNormallyFullQueue, &xHigherPriorityTaskWoken ); \ } \ portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); \ } \ @@ -419,7 +419,7 @@ portBASE_TYPE xQueueStatus; portENTER_CRITICAL(); { uxValueForNormallyEmptyQueue++; - uxValue = uxValueForNormallyEmptyQueue; + uxValue = uxValueForNormallyEmptyQueue; } portEXIT_CRITICAL(); @@ -449,7 +449,7 @@ portBASE_TYPE xQueueStatus; portENTER_CRITICAL(); { uxValueForNormallyFullQueue++; - uxValueToTx = uxValueForNormallyFullQueue; + uxValueToTx = uxValueForNormallyFullQueue; } portEXIT_CRITICAL(); @@ -461,7 +461,7 @@ portBASE_TYPE xQueueStatus; portENTER_CRITICAL(); { uxValueForNormallyFullQueue++; - uxValueToTx = uxValueForNormallyFullQueue; + uxValueToTx = uxValueForNormallyFullQueue; } portEXIT_CRITICAL(); @@ -539,7 +539,7 @@ portBASE_TYPE xQueueStatus; portENTER_CRITICAL(); { uxValueForNormallyFullQueue++; - uxValueToTx = uxValueForNormallyFullQueue; + uxValueToTx = uxValueForNormallyFullQueue; } portEXIT_CRITICAL(); @@ -551,7 +551,7 @@ portBASE_TYPE xQueueStatus; portENTER_CRITICAL(); { uxValueForNormallyFullQueue++; - uxValueToTx = uxValueForNormallyFullQueue; + uxValueToTx = uxValueForNormallyFullQueue; } portEXIT_CRITICAL(); -- 2.39.2