瀏覽代碼

* Fix length size for non-short string types

git-svn-id: trunk@17961 -
pierre 14 年之前
父節點
當前提交
0ca127b97e
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      compiler/utils/ppudump.pp

+ 4 - 4
compiler/utils/ppudump.pp

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