Skip to content

Commit d03233f

Browse files
authored
fix warnings from "gcc -Wconversion" (#1271)
fix warnings from "gcc -Wconversion" Signed-off-by: Florian La Roche <[email protected]>
1 parent 4ee6a1f commit d03233f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

portable/Common/mpu_wrappers_v2.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,8 +1059,8 @@
10591059
configRUN_TIME_COUNTER_TYPE * pulTotalRunTime ) /* PRIVILEGED_FUNCTION */
10601060
{
10611061
UBaseType_t uxReturn = 0;
1062-
UBaseType_t xIsTaskStatusArrayWriteable = pdFALSE;
1063-
UBaseType_t xIsTotalRunTimeWriteable = pdFALSE;
1062+
BaseType_t xIsTaskStatusArrayWriteable = pdFALSE;
1063+
BaseType_t xIsTotalRunTimeWriteable = pdFALSE;
10641064
uint32_t ulArraySize = ( uint32_t ) uxArraySize;
10651065
uint32_t ulTaskStatusSize = ( uint32_t ) sizeof( TaskStatus_t );
10661066

0 commit comments

Comments
 (0)