diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-11-02 14:55:23 +0100 |
---|---|---|
committer | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-11-24 10:38:06 +0100 |
commit | b4bef2f4b1728a2b4de0e3765aaf172e937a1ff9 (patch) | |
tree | 2cb577036c8dc7176f8c91b210e2735b4c593c6b /ctl-lib/ctl-plugin.h | |
parent | 3a6421c3dfd6b69b2fc0694a39754f9cb096474c (diff) |
Fix: C++ list initialization correctly done.
C++ requires to initialize using the same order than
what it is declared.
Change-Id: Ic0063e0c0c8b2d5ad28e00e42b8a7e8822399a4b
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'ctl-lib/ctl-plugin.h')
-rw-r--r-- | ctl-lib/ctl-plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctl-lib/ctl-plugin.h b/ctl-lib/ctl-plugin.h index 0bdb4b9..2adfbef 100644 --- a/ctl-lib/ctl-plugin.h +++ b/ctl-lib/ctl-plugin.h @@ -227,7 +227,7 @@ typedef struct { typedef void*(*DispatchPluginInstallCbT)(CtlPluginT *plugin, void* handle); #define MACRO_STR_VALUE(arg) #arg -#define CTLP_CAPI_REGISTER(pluglabel) CtlPluginMagicT CtlPluginMagic={.magic=CTL_PLUGIN_MAGIC,.uid=pluglabel}; struct afb_binding_data_v2; +#define CTLP_CAPI_REGISTER(pluglabel) CtlPluginMagicT CtlPluginMagic={.uid=pluglabel,.magic=CTL_PLUGIN_MAGIC}; struct afb_binding_data_v2; #define CTLP_ONLOAD(plugin, handle) void* CtlPluginOnload(CtlPluginT *plugin, void* handle) #define CTLP_CAPI(funcname, source, argsJ, queryJ) int funcname(CtlSourceT *source, json_object* argsJ, json_object* queryJ) |