Browse Source

* Change a loop counter from aint to integer; the "to" part of the loop
is of type integer. Fixes compiling ppcx64 with ppc386.

git-svn-id: trunk@7641 -

daniel 18 years ago
parent
commit
4703ae318b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/symtable.pas

+ 1 - 1
compiler/symtable.pas

@@ -934,7 +934,7 @@ implementation
       var
         sym : tsym;
         def : tdef;
-        i,
+        i : integer;
         varalignrecord,varalign,
         storesize,storealign : aint;
         bitsize: aint;