This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/civetweb_integration
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/feature/civetweb_integration
by this push:
new b47a68c7 Eliminate compiler warnings.
b47a68c7 is described below
commit b47a68c7a2ff521cf62d36a2bdeab4bf8add0ba3
Author: PengZheng <[email protected]>
AuthorDate: Sun Feb 5 18:04:59 2023 +0800
Eliminate compiler warnings.
---
examples/conan_test_package/my_psa_activator.c | 1 +
examples/conan_test_package/my_rsa_activator.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/examples/conan_test_package/my_psa_activator.c
b/examples/conan_test_package/my_psa_activator.c
index 9e94313f..32a3b536 100644
--- a/examples/conan_test_package/my_psa_activator.c
+++ b/examples/conan_test_package/my_psa_activator.c
@@ -132,6 +132,7 @@ static celix_status_t addDiscoveredEndpoint(void *handle,
const celix_properties
static celix_status_t removeDiscoveredEndpoint(void *handle, const
celix_properties_t *endpoint) {
(void)handle;
(void)endpoint;
+ return CELIX_SUCCESS;
}
int psa_udpmc_start(my_psa_activator_t *act, celix_bundle_context_t *ctx) {
diff --git a/examples/conan_test_package/my_rsa_activator.c
b/examples/conan_test_package/my_rsa_activator.c
index 34179cf5..24e6188d 100644
--- a/examples/conan_test_package/my_rsa_activator.c
+++ b/examples/conan_test_package/my_rsa_activator.c
@@ -38,6 +38,7 @@ static celix_status_t
remoteServiceAdmin_exportService(remote_service_admin_t *a
(void)properties;
(void)registrations;
celix_logHelper_info(admin->loghelper, "%s called: serviceId=%s\n",
__FUNCTION__, serviceId);
+ return CELIX_SUCCESS;
}
static celix_status_t
remoteServiceAdmin_getExportedServices(remote_service_admin_t *admin,
array_list_pt *services) {