Add 'noconcurrency' when creating dynamic API
[src/app-framework-binder.git] / include / afb / afb-req-v1.h
index 03b4ee6..3a73769 100644 (file)
@@ -18,7 +18,7 @@
 #pragma once
 
 #include <stdlib.h>
-#include "afb-req-common.h"
+#include "afb-req.h"
 
 /*
  * Stores 'req' on heap for asynchrnous use.
@@ -29,7 +29,7 @@
 static inline struct afb_req *afb_req_store_v1(struct afb_req req)
 {
        struct afb_req *result = (struct afb_req*)malloc(sizeof *result);
-       if (result != NULL) {
+       if (result) {
                *result = req;
                afb_req_addref(req);
        }