Skip to content

Commit

Permalink
gh-685: Replace sigabbrev_np usage with strsignal
Browse files Browse the repository at this point in the history
  • Loading branch information
pnoltes committed Jun 2, 2024
1 parent 87ab2b3 commit 5b4cd3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/framework/src/celix_launcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5b4cd3a

Please sign in to comment.