1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Fixed syntax error.

committer: mfx <mfx> 1027598532 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2002-07-25 12:02:12 +00:00
parent f7d66c8b50
commit 076d862ee0

View File

@ -53,8 +53,9 @@ if (1 && $st[7] <= 0) {
}
if (1 && $st[7] > 64*1024) {
print STDERR "$ifile: ERROR: file is too big (${st[7]} bytes)\n";
if ($st[7] > 1024*1024)
if ($st[7] > 1024*1024) {
print STDERR " (please upgrade your binutils to 2.12.90.0.15 or better)\n";
}
exit(1);
}