diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-21 12:24:46 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-23 15:33:41 +0000 |
commit | a58d83be3c4dc0ea780ab4094b12dd9d125368bc (patch) | |
tree | a815a1abd9fa6b8c320966ca1e1e7f0bbd81999f | |
parent | 86f65bda6baaff3f877943ac00bc3867543df970 (diff) |
Fix : typo introduced in a previous commit.flounder_5.99.2flounder/5.99.25.99.2
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) ; |