فهرست منبع

amicommon: removed the accidental leftovers of experiments for the last syscall fix for MorphOS

git-svn-id: trunk@28695 -
Károly Balogh 11 سال پیش
والد
کامیت
2fba1540c4
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      rtl/amicommon/osdebug.inc

+ 3 - 3
rtl/amicommon/osdebug.inc

@@ -34,11 +34,11 @@ var
 begin
   if s <> '' then
     for i:=1 to Length(s) do
-      RawPutChar(LongWord(s[i]));
-  RawPutChar(LongWord(#10));
+      RawPutChar(s[i]);
+  RawPutChar(#10);
 end;
 
 procedure SysDebugLn; {$IFDEF SYSTEMINLINE}inline;{$ENDIF} platform;
 begin
-  RawPutChar(LongWord(#10));
+  RawPutChar(#10);
 end;