From 5b4cd3a6b9375279578dda819563f896107b4b1a Mon Sep 17 00:00:00 2001 From: Pepijn Noltes Date: Sun, 2 Jun 2024 15:02:41 +0200 Subject: [PATCH] gh-685: Replace sigabbrev_np usage with strsignal --- libs/framework/src/celix_launcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/framework/src/celix_launcher.c b/libs/framework/src/celix_launcher.c index e40e320f5..4a8fe95eb 100644 --- a/libs/framework/src/celix_launcher.c +++ b/libs/framework/src/celix_launcher.c @@ -379,7 +379,7 @@ void celix_launcher_stopInternal(const int* signal) { if (signal) { celix_bundle_context_t* ctx = celix_framework_getFrameworkContext(fw); celix_bundleContext_log( - ctx, CELIX_LOG_LEVEL_INFO, "Stopping Celix framework due to signal %s", sigabbrev_np(*signal)); + ctx, CELIX_LOG_LEVEL_INFO, "Stopping Celix framework due to signal %s", strsignal(*signal)); } celix_framework_stopBundle(fw, CELIX_FRAMEWORK_BUNDLE_ID); } else {