Explorar o código

* Fix length size for non-short string types

git-svn-id: trunk@17961 -
pierre %!s(int64=14) %!d(string=hai) anos
pai
achega
0ca127b97e
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  1. 4 4
      compiler/utils/ppudump.pp

+ 4 - 4
compiler/utils/ppudump.pp

@@ -1932,25 +1932,25 @@ begin
          ibwidestringdef :
            begin
              readcommondef('WideString definition',defoptions);
-             writeln(space,'           Length : ',getlongint);
+             writeln(space,'           Length : ',getaint);
            end;
 
          ibunicodestringdef :
            begin
              readcommondef('UnicodeString definition',defoptions);
-             writeln(space,'           Length : ',getlongint);
+             writeln(space,'           Length : ',getaint);
            end;
 
          ibansistringdef :
            begin
              readcommondef('AnsiString definition',defoptions);
-             writeln(space,'           Length : ',getlongint);
+             writeln(space,'           Length : ',getaint);
            end;
 
          iblongstringdef :
            begin
              readcommondef('Longstring definition',defoptions);
-             writeln(space,'           Length : ',getlongint);
+             writeln(space,'           Length : ',getaint);
            end;
 
          ibrecorddef :