]> www.infradead.org Git - users/borneoa/openocd-next.git/commitdiff
rtos: mqx: minor rework to avoid a cast
authorAntonio Borneo <borneo.antonio@gmail.com>
Wed, 27 Nov 2024 08:25:01 +0000 (09:25 +0100)
committerAntonio Borneo <borneo.antonio@gmail.com>
Sun, 22 Dec 2024 09:52:32 +0000 (09:52 +0000)
Change the type of task_name[] to char in order to drop a cast.

Change-Id: I233fc862e972e52130fd4ffcb29a3da36f4f8923
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: https://review.openocd.org/c/openocd/+/8599
Reviewed-by: Paul Fertser <fercerpav@gmail.com>
Tested-by: jenkins
src/rtos/mqx.c

index 90154db3fff16745e72461d35adbd8e98d092a23..017fd2b01cd1a1c581e4d142ea39a7b3a527a551 100644 (file)
@@ -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