From d33d04b14cfefa1c41ba240968d073e6979f99a6 Mon Sep 17 00:00:00 2001 From: Florian La Roche Date: Thu, 29 Jan 2026 11:13:42 +0100 Subject: [PATCH] remove stray semicolon from gcc-ARM_CRx_MPU port.c Remove stray semicolon from gcc-ARM_CRx_MPU port.c. Signed-off-by: Florian La Roche --- portable/GCC/ARM_CRx_MPU/port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portable/GCC/ARM_CRx_MPU/port.c b/portable/GCC/ARM_CRx_MPU/port.c index 6b8d77cd6..56ff38384 100644 --- a/portable/GCC/ARM_CRx_MPU/port.c +++ b/portable/GCC/ARM_CRx_MPU/port.c @@ -418,7 +418,7 @@ void vPortStoreTaskMPUSettings( xMPU_SETTINGS * xMPUSettings, ulIndex = portSTACK_REGION; xMPUSettings->xRegion[ ulIndex ].ulRegionBaseAddress = ( uint32_t ) pxBottomOfStack; xMPUSettings->xRegion[ ulIndex ].ulRegionSize = ( ulRegionLengthEncoded | - portMPU_REGION_ENABLE );; + portMPU_REGION_ENABLE ); xMPUSettings->xRegion[ ulIndex ].ulRegionAttribute = ( portMPU_REGION_PRIV_RW_USER_RW_NOEXEC | portMPU_REGION_NORMAL_OIWTNOWA_SHARED ); }