diff options
author | 2017-07-20 10:14:56 +0200 | |
---|---|---|
committer | 2017-07-20 13:23:15 +0000 | |
commit | 944295b5af95fdcb1a33e2028ef709e7bf60cb6e (patch) | |
tree | b22ddde59ab0f0fd3fabdb87413105b9571cdf9b /low-can-binding/utils/config-parser.cpp | |
parent | 5d58986bc8389a44741486c5856f39f51a4c6e39 (diff) |
Fix: align bindingv2 struct with dab appfw version
DAB Fixes follows appfw API break.
Following functions now return 0 on success and negative value
on failure :
o afb_req_subcall
o afb_req_subcall_sync
o afb_service_call
o afb_service_call_sync
Verbosity macros used in v2 bindings now needs to be prefixed
with AFB_ (ERROR -> AFB_ERROR)
New field for afb_verb_v2 and afb_binding_v2 structures
Fix: uninitialized variables.
Change-Id: Ia728b9ac4576b9b44c8c7c054820b7c64a314942
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding/utils/config-parser.cpp')
-rw-r--r-- | low-can-binding/utils/config-parser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/low-can-binding/utils/config-parser.cpp b/low-can-binding/utils/config-parser.cpp index 8ccf5bc..e3936eb 100644 --- a/low-can-binding/utils/config-parser.cpp +++ b/low-can-binding/utils/config-parser.cpp @@ -39,10 +39,10 @@ namespace utils { if (config_content_.size() <= 0) { - ERROR("Can't load the INI config file."); + AFB_ERROR("Can't load the INI config file."); return false; } - DEBUG("Configuration file parsed"); + AFB_DEBUG("Configuration file parsed"); return true; } @@ -64,4 +64,4 @@ namespace utils return devices_name; } -}
\ No newline at end of file +} |