Skip to content

Commit

Permalink
Whoops... wrong exit status.
Browse files Browse the repository at this point in the history
  • Loading branch information
katef committed Aug 11, 2024
1 parent 021d169 commit 719b1b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libfsm/print/c.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ print_ids(FILE *f,
fprintf(f, " };\n");
fprintf(f, "\t\t*ids = a;\n");
fprintf(f, "\t\t*count = %zu;\n", count);
fprintf(f, "\t\treturn 0;\n");
fprintf(f, "\t\treturn 1;\n");
fprintf(f, "\t}");
break;

Expand Down
2 changes: 1 addition & 1 deletion src/libfsm/print/vmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ print_ids(FILE *f,
fprintf(f, " };\n");
fprintf(f, "\t\t*ids = a;\n");
fprintf(f, "\t\t*count = %zu;\n", count);
fprintf(f, "\t\treturn 0;\n");
fprintf(f, "\t\treturn 1;\n");
fprintf(f, "\t}");
break;

Expand Down

0 comments on commit 719b1b2

Please sign in to comment.