Skip to content

Commit

Permalink
Fix --output-pbc option
Browse files Browse the repository at this point in the history
  • Loading branch information
nwellnhof committed Jan 20, 2011
1 parent 5a2f7dc commit f4313ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compilers/imcc/main.c
Expand Up @@ -287,7 +287,7 @@ imcc_parseflags(PARROT_INTERP, int argc, ARGIN_NULLOK(const char **argv))
case OPT_PBC_OUTPUT:
UNSET_STATE_RUN_PBC(interp);
SET_STATE_WRITE_PBC(interp);
if (!STRING_IS_NULL(output_file))
if (STRING_IS_NULL(output_file))
output_file = Parrot_str_new(interp, "-", 1);
break;

Expand Down

0 comments on commit f4313ad

Please sign in to comment.