Skip to content

Commit bcb0eff

Browse files
committed
fix(utils): Fix an incompatible pointer type issue
Closes: #145
1 parent 3a0b62e commit bcb0eff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/src/espnow_mem.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ void espnow_mem_print_task()
132132
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) )
133133
TaskStatus_t *pxTaskStatusArray = NULL;
134134
volatile UBaseType_t uxArraySize = 0;
135-
uint32_t ulTotalRunTime = 0, ulStatsAsPercentage = 0, ulRunTimeCounte = 0;
135+
configRUN_TIME_COUNTER_TYPE ulTotalRunTime = 0, ulStatsAsPercentage = 0, ulRunTimeCounte = 0;
136136
const char task_status_char[] = {'r', 'R', 'B', 'S', 'D'};
137137

138138
/* Take a snapshot of the number of tasks in case it changes while this

0 commit comments

Comments
 (0)