mirror of
https://github.com/codestation/mhtools
synced 2024-11-10 05:44:17 +00:00
Typo in message.
This commit is contained in:
parent
a41246dda0
commit
63d1dde576
1 changed files with 1 additions and 1 deletions
|
@ -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 + "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);
|
||||
|
|
Loading…
Reference in a new issue