Browse Source

* changed "crc" variable from longint to cardinal to avoid (harmless) range
check errors

git-svn-id: trunk@21257 -

Jonas Maebe 13 years ago
parent
commit
24be42d509
1 changed files with 2 additions and 1 deletions
  1. 2 1
      compiler/pgenutil.pas

+ 2 - 1
compiler/pgenutil.pas

@@ -73,7 +73,8 @@ uses
         first,
         err : boolean;
         i,
-        gencount,crc : longint;
+        gencount : longint;
+        crc : cardinal;
         genericdef,def : tstoreddef;
         generictype : ttypesym;
         genericdeflist : TFPObjectList;