From d2a1198b511296b162e13a5ee3b17a1986fc514d Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Fri, 14 Dec 2012 16:28:41 +0000 Subject: [PATCH] edbus: Add missing EINA_WARN_UNUSED_RESULT to service API SVN revision: 80963 --- legacy/edbus/src/lib/edbus_service.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/edbus/src/lib/edbus_service.h b/legacy/edbus/src/lib/edbus_service.h index b29bb0a4d0..d23102a37b 100644 --- a/legacy/edbus/src/lib/edbus_service.h +++ b/legacy/edbus/src/lib/edbus_service.h @@ -118,8 +118,8 @@ EAPI void edbus_service_interface_unregister(EDBus_Service_Interface *iface) EIN * and the object path. */ EAPI void edbus_service_object_unregister(EDBus_Service_Interface *iface) EINA_ARG_NONNULL(1); -EAPI EDBus_Connection *edbus_service_connection_get(const EDBus_Service_Interface *iface) EINA_ARG_NONNULL(1); -EAPI const char *edbus_service_object_path_get(const EDBus_Service_Interface *iface) EINA_ARG_NONNULL(1); +EAPI EDBus_Connection *edbus_service_connection_get(const EDBus_Service_Interface *iface) EINA_ARG_NONNULL(1) EINA_WARN_UNUSED_RESULT; +EAPI const char *edbus_service_object_path_get(const EDBus_Service_Interface *iface) EINA_ARG_NONNULL(1) EINA_WARN_UNUSED_RESULT; /** * @brief Emit a signal handler of the interface with non-complex types.