From 076d862ee0884903771797220b873d3b076fa224 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Thu, 25 Jul 2002 12:02:12 +0000 Subject: [PATCH] Fixed syntax error. committer: mfx 1027598532 +0000 --- src/stub/scripts/bin2h.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stub/scripts/bin2h.pl b/src/stub/scripts/bin2h.pl index 90b68f18..9f75351a 100644 --- a/src/stub/scripts/bin2h.pl +++ b/src/stub/scripts/bin2h.pl @@ -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); }