compaction: Less than is the new greater than. Fixes #558.

db4
Doug Coleman 2012-07-25 17:57:50 -07:00
parent 180cf219bc
commit 106ecdb6dd
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ struct code_compaction_fixup {
code_block *translate_code(const code_block *compiled)
{
if(compiled >= *code_finger)
if(compiled < *code_finger)
return fixup_code((code_block *)compiled);
else
return (code_block *)compiled;