Browse Source

* string -> shortstring

Michaël Van Canneyt 2 years ago
parent
commit
a3300b5ef5
1 changed files with 3 additions and 3 deletions
  1. 3 3
      rtl/aros/i386/execf.inc

+ 3 - 3
rtl/aros/i386/execf.inc

@@ -71,12 +71,12 @@ begin
   GetLibAdress := Pointer((Base -(Offset * SizeOf(Pointer)))^);
   GetLibAdress := Pointer((Base -(Offset * SizeOf(Pointer)))^);
 end;
 end;
 
 
-procedure Debug(s: string);
+procedure Debug(s: shortstring);
 type
 type
   TkPrintf = function(Msg: PAnsiChar): Integer; cdecl;
   TkPrintf = function(Msg: PAnsiChar): Integer; cdecl;
 var
 var
   kPrintf: TkPrintf;
   kPrintf: TkPrintf;
-  d: string;
+  d: shortstring;
   i: Integer;
   i: Integer;
 begin
 begin
   if Assigned(AOS_ExecBase) then
   if Assigned(AOS_ExecBase) then
@@ -93,7 +93,7 @@ begin
   end;
   end;
 end;
 end;
 
 
-procedure Debugln(s: string);
+procedure Debugln(s: shortstring);
 begin
 begin
   Debug(s + #10);
   Debug(s + #10);
 end;
 end;