fix issue for C++
authorJosé Bollo <jose.bollo@iot.bzh>
Tue, 21 Feb 2017 08:22:10 +0000 (09:22 +0100)
committerJosé Bollo <jose.bollo@iot.bzh>
Tue, 21 Feb 2017 08:22:10 +0000 (09:22 +0100)
Change-Id: I14b5fb9a0f517d5a784cbbc43ca1401877d0f2fe
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
include/afb/afb-req-itf.h

index c980838..5116b13 100644 (file)
@@ -310,7 +310,7 @@ static inline int afb_req_session_set_LOA(struct afb_req req, unsigned level)
  */
 static inline struct afb_req *afb_req_store(struct afb_req req)
 {
-       struct afb_req *result = malloc(sizeof *result);
+       struct afb_req *result = (struct afb_req*)malloc(sizeof *result);
        if (result != NULL) {
                *result = req;
                afb_req_addref(req);