diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-21 12:24:46 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 15:02:55 +0100 |
commit | 97e31a3f1ce9d884ac043e570f54caaa47bf88f5 (patch) | |
tree | a815a1abd9fa6b8c320966ca1e1e7f0bbd81999f | |
parent | cb3355770acd0aee636d108264333f784501313b (diff) |
Fix : typo introduced in a previous commit.
Wrong function signature.
Change-Id: I20794a0ae59fc54c08f0960544185e7ba42b2627
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | ctl-lib/ctl-config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctl-lib/ctl-config.h b/ctl-lib/ctl-config.h index be2113d..2fc51cb 100644 --- a/ctl-lib/ctl-config.h +++ b/ctl-lib/ctl-config.h @@ -101,7 +101,7 @@ extern int CtlConfigMagicNew(); extern json_object* CtlConfigScan(const char *dirList, const char *prefix) ; extern char* ConfigSearch(AFB_ApiT apiHandle, json_object *responseJ); extern char* CtlConfigSearch(AFB_ApiT apiHandle, const char *dirList, const char *prefix) ; -extern void DispatchRequiredApi(AFB_ApiT apiHandle, json_object * requireJ); +extern void DispatchRequireApi(AFB_ApiT apiHandle, json_object * requireJ); extern int CtlConfigExec(AFB_ApiT apiHandle, CtlConfigT *ctlConfig) ; extern CtlConfigT *CtlLoadMetaData(AFB_ApiT apiHandle,const char* filepath) ; extern CtlConfigT *CtlLoadMetaDataUsingPrefix(AFB_ApiT apiHandle,const char* filepath, const char *prefix) ; |