diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-06-19 16:33:32 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-10-08 15:53:53 +0200 |
commit | 51dff31e2c0183458a4ed53c06b02625529cc3e4 (patch) | |
tree | 3386bc58137ec79cb96620be4fe0ac6eb330f794 /4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c | |
parent | 8e923d9e07f483d209269d4af9070ed729600f05 (diff) |
Remove boolean library
As it was almost never used in code, remove boolean library.
Change-Id: I9264ffd5600a7d9526f4f4cfa8209a0cd0e5bb77
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 | 3 |
1 files changed, 1 insertions, 2 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 ba3b74d..7e771e5 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 @@ -18,7 +18,6 @@ #define _GNU_SOURCE #include <stdio.h> -#include <stdbool.h> #include <string.h> #include <filescan-utils.h> @@ -94,7 +93,7 @@ static int HalCtlsInitOneApi(AFB_ApiT apiHandle) return -3; // Fill SpecificHalDatadata structure - currentCtlHalData->internal = true; + currentCtlHalData->internal = 1; currentCtlHalData->apiName = (char *) ctrlConfig->api; currentCtlHalData->sndCardPath = (char *) ctrlConfig->uid; |