From 5d92775a03a2e7da6b0244c2e98387e1e7986dec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C5=82a=C5=BCej=20Sowa?= Date: Wed, 30 Aug 2023 14:24:05 +0200 Subject: [PATCH] Change char* to const char* MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Błażej Sowa --- include/zenoh-pico/system/platform/freertos_plus_tcp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/zenoh-pico/system/platform/freertos_plus_tcp.h b/include/zenoh-pico/system/platform/freertos_plus_tcp.h index f5582dee4..6853e9bdc 100644 --- a/include/zenoh-pico/system/platform/freertos_plus_tcp.h +++ b/include/zenoh-pico/system/platform/freertos_plus_tcp.h @@ -7,7 +7,7 @@ #if Z_MULTI_THREAD == 1 typedef struct { - char *name; + const char *name; UBaseType_t priority; size_t stack_depth; #if (configSUPPORT_STATIC_ALLOCATION == 1)