mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
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 -
This commit is contained in:
parent
39a12910ef
commit
eedcb17f15
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user