diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-02-21 09:22:10 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-02-21 09:22:10 +0100 |
commit | 69affc2edb055f6cd65fa1d55689272c28446d63 (patch) | |
tree | a208b6d27f9a468fc63403c6df46f432012ab5a1 /include/afb | |
parent | f83e7ca61af4c49d4f5f878973e508e18963c186 (diff) |
fix issue for C++
Change-Id: I14b5fb9a0f517d5a784cbbc43ca1401877d0f2fe
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb')
-rw-r--r-- | include/afb/afb-req-itf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/afb/afb-req-itf.h b/include/afb/afb-req-itf.h index c980838e..5116b133 100644 --- a/include/afb/afb-req-itf.h +++ b/include/afb/afb-req-itf.h @@ -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); |