all: Remove spaces between nested paren and inside function arg paren.

Using new options enabled in the uncrustify configuration.
This commit is contained in:
Damien George
2020-03-20 21:47:07 +11:00
parent f62cc41fac
commit feb2577585
11 changed files with 38 additions and 38 deletions

View File

@@ -100,9 +100,9 @@ int main (void) {
}
// We need this when configSUPPORT_STATIC_ALLOCATION is enabled
void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer,
void vApplicationGetIdleTaskMemory(StaticTask_t **ppxIdleTaskTCBBuffer,
StackType_t **ppxIdleTaskStackBuffer,
uint32_t *pulIdleTaskStackSize ) {
uint32_t *pulIdleTaskStackSize) {
*ppxIdleTaskTCBBuffer = &xIdleTaskTCB;
*ppxIdleTaskStackBuffer = uxIdleTaskStack;
*pulIdleTaskStackSize = configMINIMAL_STACK_SIZE;