Minor
[src/app-framework-binder.git] / include / afb / afb-binding.h
index ac63d36..7058b6d 100644 (file)
@@ -205,7 +205,7 @@ static inline struct sd_bus *afb_daemon_get_system_bus(struct afb_daemon daemon)
  * 'object' can be NULL.
  * 'daemon' MUST be the daemon given in interface when activating the binding.
  *
- * For conveniency, the function calls 'json_object_put' for 'object'.
+ * For convenience, the function calls 'json_object_put' for 'object'.
  * Thus, in the case where 'object' should remain available after
  * the function returns, the function 'json_object_get' shall be used.
  *
@@ -236,7 +236,7 @@ static inline void afb_daemon_verbose(struct afb_daemon daemon, int level, const
 {
        va_list args;
        va_start(args, fmt);
-       return daemon.itf->vverbose(daemon.closure, level, file, line, fmt, args);
+       daemon.itf->vverbose(daemon.closure, level, file, line, fmt, args);
        va_end(args);
 }