Skip to content

Commit

Permalink
[flight_plan] add ; when using the 'call' statement without loop
Browse files Browse the repository at this point in the history
  • Loading branch information
gautierhattenberger committed Feb 28, 2015
1 parent 8634b72 commit f693743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw/tools/generators/gen_flight_plan.ml
Expand Up @@ -531,7 +531,7 @@ let rec print_stage = fun index_of_waypoints x ->
lprintf " break;\n";
lprintf "}\n"
| "FALSE" ->
lprintf "%s\n" statement;
lprintf "%s;\n" statement;
begin match break with
| "TRUE" -> lprintf "NextStageAndBreak();\n";
| "FALSE" -> lprintf "NextStage();\n";
Expand Down

0 comments on commit f693743

Please sign in to comment.