diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-06-09 17:56:08 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-10-08 15:52:51 +0200 |
commit | cfd7792c40232af1cb14ea4d0efd93bc8ca0d983 (patch) | |
tree | a1cd133a0dd2d65bb4f85320a5f58c1aea62b6ee /4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c | |
parent | 957ccad167159cecf6fa7e33c75ec9692ce6af29 (diff) |
Change paramters in functions handling hal data
Change paramters in functions handling hal data structure.
Now, the only thing you need to add/search for/remove something in hal
data structure list is the address of the first element of the list
instead of the address of the whole hal manager data structure.
Change-Id: Iafa7428735c3aa418a6ef6564f9acde8f44e7dfe
Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
Diffstat (limited to '4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c')
-rw-r--r-- | 4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c index 404ecd2..61b0657 100644 --- a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c +++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c @@ -174,7 +174,7 @@ int HalCtlsCreateApi(AFB_ApiT apiHandle, char *path, struct HalMgrData *HalMgrGl } // Allocation of current hal controller data - currentCtlHalData = HalUtlAddHalApiToHalList(HalMgrGlobalData); + currentCtlHalData = HalUtlAddHalApiToHalList(&HalMgrGlobalData->first); if(! currentCtlHalData) return -4; |