This is an automated email from the ASF dual-hosted git repository. pnoltes pushed a commit to branch feature/797-additional-macos-fix in repository https://gitbox.apache.org/repos/asf/celix.git
commit 4906c9d7fa818afcf9c813016c7b8809d63ca4d8 Author: Pepijn Noltes <[email protected]> AuthorDate: Sun Aug 17 18:39:59 2025 +0200 Changes C const string in shell tui to define --- bundles/shell/shell_tui/src/shell_tui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/shell/shell_tui/src/shell_tui.c b/bundles/shell/shell_tui/src/shell_tui.c index 1d8e78f83..e02a78d63 100644 --- a/bundles/shell/shell_tui/src/shell_tui.c +++ b/bundles/shell/shell_tui/src/shell_tui.c @@ -47,7 +47,7 @@ #define KEY_DEL1 '3' #define KEY_DEL2 '~' -const char * const SHELL_NOT_AVAILABLE_MSG = "[Shell TUI] Shell service not available."; +#define SHELL_NOT_AVAILABLE_MSG "[Shell TUI] Shell service not available." struct shell_tui { celix_bundle_context_t* ctx;
