This is an automated email from Gerrit.

"Antonio Borneo <borneo.anto...@gmail.com>" just uploaded a new patch set to 
Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8599

-- gerrit

commit 6eb34731dfe4214adfaff1820611c173f1a3cf64
Author: Antonio Borneo <borneo.anto...@gmail.com>
Date:   Wed Nov 27 09:25:01 2024 +0100

    rtos: mqx: minor rework to avoid a cast
    
    Change the type of task_name[] to char in order to drop a cast.
    
    Change-Id: I233fc862e972e52130fd4ffcb29a3da36f4f8923
    Signed-off-by: Antonio Borneo <borneo.anto...@gmail.com>

diff --git a/src/rtos/mqx.c b/src/rtos/mqx.c
index 90154db3ff..017fd2b01c 100644
--- a/src/rtos/mqx.c
+++ b/src/rtos/mqx.c
@@ -319,7 +319,7 @@ static int mqx_update_threads(
                i < (uint32_t)rtos->thread_count;
                i++
        ) {
-               uint8_t task_name[MQX_THREAD_NAME_LENGTH + 1];
+               char task_name[MQX_THREAD_NAME_LENGTH + 1];
                uint32_t task_addr = 0, task_template = 0, task_state = 0;
                uint32_t task_name_addr = 0, task_id = 0, task_errno = 0;
                uint32_t state_index = 0;
@@ -380,7 +380,7 @@ static int mqx_update_threads(
                rtos->thread_details[i].threadid = task_id;
                rtos->thread_details[i].exists = true;
                /* set thread name */
-               rtos->thread_details[i].thread_name_str = strdup((char 
*)task_name);
+               rtos->thread_details[i].thread_name_str = strdup(task_name);
                if (!rtos->thread_details[i].thread_name_str)
                        return ERROR_FAIL;
                /* set thread extra info

-- 

Reply via email to