Parcourir la source

* Modified "not aktpackrecords" as suggested by Jonas.

daniel il y a 25 ans
Parent
commit
7ebb3f07ae
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      compiler/new/symtable/symtablt.pas

+ 2 - 2
compiler/new/symtable/symtablt.pas

@@ -224,7 +224,7 @@ function Tabstractrecordsymtable.varsymtodata(sym:Psym;
 
 begin
     datasize:=(datasize+(packrecordalignment[aktpackrecords]-1))
-     and (not packrecordalignment[aktpackrecords]-1);
+     and not (packrecordalignment[aktpackrecords]-1);
     varsymtodata:=inherited varsymtodata(sym,len);
 end;
 
@@ -395,4 +395,4 @@ begin
     speedsearch:=link^.speedsearch(s,speedvalue);
 end;
 
-end.
+end.