From 9ee5ae1883c58527f9cb63b7bafeb2f1d59e37ec Mon Sep 17 00:00:00 2001 From: José Bollo Date: Wed, 31 May 2017 12:15:33 +0200 Subject: code formatting improvement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I07e0201c4dc9996e47ca70819123b351c7fb2ad7 Signed-off-by: José Bollo --- include/afb/afb-req-itf.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'include/afb/afb-req-itf.h') diff --git a/include/afb/afb-req-itf.h b/include/afb/afb-req-itf.h index 8c18a831..dcbbb8a7 100644 --- a/include/afb/afb-req-itf.h +++ b/include/afb/afb-req-itf.h @@ -27,7 +27,8 @@ struct json_object; /* * Describes an argument (or parameter) of a request */ -struct afb_arg { +struct afb_arg +{ const char *name; /* name of the argument or NULL if invalid */ const char *value; /* string representation of the value of the argument */ /* original filename of the argument if path != NULL */ @@ -41,7 +42,8 @@ struct afb_arg { * Don't use this structure directly. * Use the helper functions documented below. */ -struct afb_req_itf { +struct afb_req_itf +{ /* CAUTION: respect the order, add at the end */ struct json_object *(*json)(void *closure); @@ -74,7 +76,8 @@ struct afb_req_itf { /* * Describes the request by bindings from afb-daemon */ -struct afb_req { +struct afb_req +{ const struct afb_req_itf *itf; /* the interface to use */ void *closure; /* the closure argument for functions of 'itf' */ }; -- cgit 1.2.3-korg