when rom file is too big, mention how many bytes

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5046 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2004-09-06 09:15:47 +00:00
parent 948e384f4d
commit 5a8b99fd6b
1 changed files with 1 additions and 1 deletions

View File

@ -27,6 +27,6 @@ my $max = $romsize - $romstart;
my $file = filesize($ARGV[1]);
if($file > $max ) {
print "Output is larger than max ($max)\n";
printf "Output is %d bytes larger than max ($max)\n", $file-$max;
exit 1;
}