mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-01 22:19:18 +02:00
* fix msgtxt array size if the text size is an exact multiple of 240
git-svn-id: trunk@41725 -
This commit is contained in:
parent
bde560dac2
commit
1bb8bd471a
@ -411,7 +411,7 @@ begin
|
||||
writeln(t,');');
|
||||
close(t);
|
||||
{update arraysize}
|
||||
s:=l0(msgsize div maxslen); { we start with 0 }
|
||||
s:=l0((msgsize-1) div maxslen); { we start with 0 }
|
||||
assign(f,fn);
|
||||
reset(f,1);
|
||||
seek(f,22+34+2*eollen+2*length(constname));
|
||||
|
Loading…
Reference in New Issue
Block a user