mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 01:58:32 -04:00
Update uncrustify configuration to 0.69 (#445)
The configuration was updated using uncrustify -c .github/uncrustify.cfg -o .github/uncrustify.cfg --update-config-with-doc to align with the actually used uncrustify version used, i.e., all configuration is now explicitly set (and no longer implicit). The files that are common to all ports ("portable/MemMang*" and "portable/Common/mpu_wrappers.c" are now also autoformatted. Co-authored-by: alfred gedeon <28123637+alfred2g@users.noreply.github.com>
This commit is contained in:
parent
9efca75d1e
commit
89e4823a49
7 changed files with 597 additions and 86 deletions
|
@ -68,13 +68,13 @@ void * pvPortMalloc( size_t xWantedSize )
|
|||
( void ) xTaskResumeAll();
|
||||
|
||||
#if ( configUSE_MALLOC_FAILED_HOOK == 1 )
|
||||
{
|
||||
if( pvReturn == NULL )
|
||||
{
|
||||
if( pvReturn == NULL )
|
||||
{
|
||||
extern void vApplicationMallocFailedHook( void );
|
||||
vApplicationMallocFailedHook();
|
||||
}
|
||||
extern void vApplicationMallocFailedHook( void );
|
||||
vApplicationMallocFailedHook();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
return pvReturn;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue