Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion man/fsm.1/fsm.1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<!ENTITY io.arg "<replaceable>io</replaceable>">
<!ENTITY iterations.arg "<replaceable>iterations</replaceable>">
<!ENTITY length.arg "<replaceable>length</replaceable>">
<!ENTITY limit.arg "<replaceable>limit</replaceable>">
<!ENTITY charset.arg "<replaceable>charset</replaceable>">

<!ENTITY a.opt "<option>-a</option>">
Expand All @@ -33,7 +34,7 @@
<!ENTITY G.opt "<option>-G</option>&nbsp;&length.arg;">
<!ENTITY k.opt "<option>-k</option>&nbsp;&io.arg;">
<!ENTITY i.opt "<option>-i</option>&nbsp;&iterations.arg;">
<!ENTITY G.opt "<option>-S</option>&nbsp;&limit.arg;">
<!ENTITY S.opt "<option>-S</option>&nbsp;&limit.arg;">
<!ENTITY U.opt "<option>-U</option>&nbsp;&charset.arg;">
<!ENTITY X.opt "<option>-X</option>">

Expand Down
2 changes: 1 addition & 1 deletion src/libfsm/print/c.c
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ fsm_print_c(FILE *f,
case AMBIG_ERROR:
case AMBIG_EARLIEST:
fprintf(f, ",\n");
fprintf(f, "\tconst unsigned *id");
fprintf(f, "\tunsigned *id");
break;

case AMBIG_MULTIPLE:
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 @@ -588,7 +588,7 @@ fsm_print_vmc(FILE *f,
case AMBIG_ERROR:
case AMBIG_EARLIEST:
fprintf(f, ",\n");
fprintf(f, "\tconst unsigned *id");
fprintf(f, "\tunsigned *id");
break;

case AMBIG_MULTIPLE:
Expand Down