X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fgenskel%2Fgenskel.c;h=62dfe3f4bc72d68b5c10a53b6827888423404f45;hb=d7933c0f61a3316cc3d1ca7e74d30e193de2f612;hp=8b179aa31b0639f16a6b5775d96b376734ee589b;hpb=f51249605057fcb4441db7e92c34e37a48d7cf1d;p=src%2Fapp-framework-binder.git diff --git a/src/genskel/genskel.c b/src/genskel/genskel.c index 8b179aa3..62dfe3f4 100644 --- a/src/genskel/genskel.c +++ b/src/genskel/genskel.c @@ -34,7 +34,7 @@ * "b": "int" * } * } - * + * * Invocation: program [file|-]... * * without arguments, it reads the input. @@ -95,7 +95,7 @@ struct json_object *search(const char *path) d = strtok(d, "/"); while(i && d) { if (!json_object_object_get_ex(i, d, &i)) - return NULL; + return NULL; d = strtok(NULL, "/"); } return i; @@ -109,7 +109,7 @@ struct json_object *expand_$ref(struct path path) struct path *p; struct json_object *o, *x; int n, i; - struct json_object_iterator ji, jn; + struct json_object_iterator ji, jn; /* expansion depends of the type of the node */ switch (json_object_get_type(path.object)) { @@ -305,7 +305,7 @@ struct json_object *new_perm(struct json_object *obj, const char *desc) if (!d_perms) { d_perms = json_object_new_object(); a_perms = json_object_new_array(); - } + } asprintf(&b, "&_afb_auths_v2_%s[%d]", capi, json_object_array_length(a_perms)); x = json_object_new_string(desc); @@ -698,7 +698,7 @@ int main(int ac, char **av) process("-"); else { do { process(*av); } while(*++av); - } + } return 0; }