Skip to content

Commit

Permalink
fix C code for old compiler 2
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Gatto <[email protected]>
  • Loading branch information
outscale-mgo committed Dec 24, 2024
1 parent 6f4784b commit 0309e07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/get_argument_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,11 @@ int main(int ac, char **av)
struct json_object *schema;
struct json_object *func;
struct json_object *properties;
int i;

in_schema:
int i = 0;

i = 0;
OBJ_GET(j_file, "components", &compo);
OBJ_GET(compo, "schemas", &schema);
OBJ_GET(schema, componant_name, &func);
Expand Down

0 comments on commit 0309e07

Please sign in to comment.