diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-01-04 14:24:11 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2019-01-04 14:37:24 +0100 |
commit | aba89b590ef0d1743dd0aa82a8b8ed1bf8809909 (patch) | |
tree | c29aa2571f0d315ccf14616828ac2fb39275f6ae /filescan-utils.h | |
parent | a1976ff1b2bccc8689182505828f7e3814d0d21b (diff) |
Little code cleaning.
Rename apiHandle to api.
Add a missing parameter to QAfbWebsocketClient::call function
comment.
Change-Id: I6fb1acd7357fbea3132cd429e9477a1a0b8a4f43
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'filescan-utils.h')
-rw-r--r-- | filescan-utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filescan-utils.h b/filescan-utils.h index a74dcb3..d6c645f 100644 --- a/filescan-utils.h +++ b/filescan-utils.h @@ -95,12 +95,12 @@ static inline char *GetBindingDirPath_v2() __attribute__((alias("GetBindingDirPath_v2"))) static char *GetBindingDirPath(); #else -static char *GetBindingDirPath_v3(struct afb_api_x3* apiHandle) +static char *GetBindingDirPath_v3(struct afb_api_x3* api) { - return GetBindingDirPath_(afb_api_x3_rootdir_get_fd(apiHandle)); + return GetBindingDirPath_(afb_api_x3_rootdir_get_fd(api)); } __attribute__((alias("GetBindingDirPath_v3"))) -static char *GetBindingDirPath(struct afb_api_x3* apiHandle); +static char *GetBindingDirPath(struct afb_api_x3* api); #endif /** |