fixed an incorrect optimisation (nw)

This commit is contained in:
smf- 2012-10-08 14:23:08 +00:00
parent ae3a267781
commit 50dae16188

View File

@ -230,12 +230,11 @@ int main(int argc, char *argv[])
spaces -= realign;
}
col += spaces;
while (spaces > 0)
{
modified[dst++] = 0x09;
spaces -= tab_size;
col += tab_size;
added_tabs++;
}
}