forgot to add the spacing....

This commit is contained in:
codestation 2011-10-04 11:54:24 -04:30
parent 63d1dde576
commit d35277a035

View file

@ -72,7 +72,7 @@ public class Encrypter extends DecryptUtils implements DataKeys {
// encrypter works with 4-byte blocks, thx XanderXAJ for the hint :)
if(file_len % 4 > 0) {
file_len += 4 - (file_len % 4);
System.out.println("The file isn't 4-byte aligned, using " + file_len + "bytes as file size");
System.out.println("The file isn't 4-byte aligned, using " + file_len + " bytes as file size");
}
long table_len = (MHUtils.getOffset(file_number + 1) << 11) - (MHUtils.getOffset(file_number) << 11);