Skip to content

Commit

Permalink
Add missing newline to result node dump.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Jul 5, 2017
1 parent 134e3f0 commit 9f02298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spesh/dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ char * MVM_spesh_dump_arg_guard(MVMThreadContext *tc, MVMStaticFrame *sf) {
i, agn->offset, agn->yes, agn->no);
break;
case MVM_SPESH_GUARD_OP_RESULT:
appendf(&ds, "%u: RESULT %u", i, agn->result);
appendf(&ds, "%u: RESULT %u\n", i, agn->result);
break;
}
}
Expand Down

0 comments on commit 9f02298

Please sign in to comment.