Pārlūkot izejas kodu

Merge commit 42024 to fixes:
------------------------------------------------------------------------
r42024 | pierre | 2019-05-10 07:23:31 +0000 (Fri, 10 May 2019) | 1 line

Use TIOCtlRequest type for local variable nr inside TCSetAttr function
------------------------------------------------------------------------
------------------------------------------------------------------------
r42024 | pierre | 2019-05-10 07:23:31 +0000 (Fri, 10 May 2019) | 1 line

Use TIOCtlRequest type for local variable nr inside TCSetAttr function
------------------------------------------------------------------------
--- Merging r42024 into '.':
U rtl/beos/termiosproc.inc
U rtl/darwin/termiosproc.inc
U rtl/haiku/termiosproc.inc
U rtl/linux/termiosproc.inc
U rtl/netbsd/termiosproc.inc
U rtl/openbsd/termiosproc.inc
--- Recording mergeinfo for merge of r42024 into '.':
U .

git-svn-id: branches/fixes_3_2@42125 -

pierre 6 gadi atpakaļ
vecāks
revīzija
eedcb17f15

+ 1 - 1
rtl/beos/termiosproc.inc

@@ -26,7 +26,7 @@ end;
 
 Function TCSetAttr(fd:cint;OptAct:cint;const tios:TermIOS):cint;
 var
-  nr:cint;
+  nr:TIOCtlRequest;
 begin
   case OptAct of
    TCSANOW   : nr:=TIOCSETA;

+ 1 - 1
rtl/darwin/termiosproc.inc

@@ -25,7 +25,7 @@ end;
 
 Function TCSetAttr(fd:cint;OptAct:cint;const tios:TermIOS):cint;
 var
-  nr:culong;
+  nr:TIOCtlRequest;
 begin
   case OptAct of
    TCSANOW   : nr:=TIOCSETA;

+ 1 - 1
rtl/haiku/termiosproc.inc

@@ -26,7 +26,7 @@ end;
 
 Function TCSetAttr(fd:cint;OptAct:cint;const tios:TermIOS):cint;
 var
-  nr:cint;
+  nr: TIOCtlRequest;
 begin
   case OptAct of
    TCSANOW   : nr:=TIOCSETA;

+ 1 - 1
rtl/linux/termiosproc.inc

@@ -15,7 +15,7 @@ end;
 
 Function TCSetAttr(fd:cint;OptAct:cint;const tios:TermIOS):cint;
 var
-  nr:culong;
+  nr:TIOCtlRequest;
 begin
   case OptAct of
    TCSANOW   : nr:=TCSETS;

+ 1 - 1
rtl/netbsd/termiosproc.inc

@@ -26,7 +26,7 @@ end;
 
 Function TCSetAttr(fd:cint;OptAct:cint;const tios:TermIOS):cint;
 var
-  nr:cint;
+  nr:TIOCtlRequest;
 begin
   case OptAct of
    TCSANOW   : nr:=TIOCSETA;

+ 1 - 1
rtl/openbsd/termiosproc.inc

@@ -26,7 +26,7 @@ end;
 
 Function TCSetAttr(fd:cint;OptAct:cint;const tios:TermIOS):cint;
 var
-  nr:cint;
+  nr:TIOCtlRequest;
 begin
   case OptAct of
    TCSANOW   : nr:=TIOCSETA;