diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-07-27 17:44:27 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-07-27 17:44:27 +0200 |
commit | bbddc1e584dd01b60042f622f8cecfc69361020b (patch) | |
tree | 35b8122ddb62325ee519ed45e3658cbf13e68bca /bindings/intrinsics | |
parent | 1ea6bd0f466a10d29f12801aa35fb6d2b30443a1 (diff) |
fix unexpected ending spaces
Change-Id: Ie7ebccb02b42e91457df3bdbf2a6f037b248400e
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'bindings/intrinsics')
-rw-r--r-- | bindings/intrinsics/afb-dbus-binding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/intrinsics/afb-dbus-binding.c b/bindings/intrinsics/afb-dbus-binding.c index 59fe78d6..dda59453 100644 --- a/bindings/intrinsics/afb-dbus-binding.c +++ b/bindings/intrinsics/afb-dbus-binding.c @@ -52,7 +52,7 @@ static int packlist(struct sd_bus_message *msg, const char *signature, struct js /* * Get the string of 'key' from 'obj' * Returns NULL if 'key' isn't in 'obj' - */ + */ static const char *strval(struct json_object *obj, const char *key) { struct json_object *keyval; @@ -110,7 +110,7 @@ static int lentype(const char *signature, int allows_dict, int allows_not_basic) } if (rc < 0) break; - return 1 + len; + return 1 + len; case SD_BUS_TYPE_DICT_ENTRY_BEGIN: if (!allows_not_basic || !allows_dict) |