Skip to content

Commit

Permalink
Fix stupid error in b3dbe8d
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipHazel committed Nov 15, 2023
1 parent b3dbe8d commit d246f2a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pcre2_printint.c
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,11 @@ for(;;)
case OP_SCRIPT_RUN:
case OP_COND:
case OP_SCOND:
if (print_lengths) fprintf(f, "%3d ", GET(code, 1));
else fprintf(f, " ");
fprintf(f, "%s", OP_names[*code]);
break;

case OP_REVERSE:
if (print_lengths) fprintf(f, "%3d ", GET2(code, 1));
else fprintf(f, " ");
Expand Down

0 comments on commit d246f2a

Please sign in to comment.