Skip to content

Commit

Permalink
MakeAPPL: fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
autc04 committed Jul 20, 2015
1 parent 036a451 commit ada5fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MakeAPPL/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ int main(int argc, char *argv[])
word(code1, 0x0697); // addi.l #_, (a7)
longword(code1, entrypoint + 12);
word(code1, 0x4e75); // rts
longword(code1, code1.tellp() + 4);
longword(code1, (long)(code1.tellp()) + 4);
code1 << flt;

rsrc.addResource(Resource("CODE", 1, code1.str()));
Expand Down

0 comments on commit ada5fc9

Please sign in to comment.