Fixed missing refactor in term_feed

This commit is contained in:
Emmanuel BENOîT 2022-10-30 10:02:20 +01:00
parent 1e141b3935
commit b17a9b8713

View file

@ -384,7 +384,7 @@ sub term_feed
my ($ttyIn, $ttyOut, $term) = @{ $_[0] };
shift;
foreach my $pByte (@_) {
ioctl $term->[0], 0x5412, $pByte;
ioctl $ttyIn, 0x5412, $pByte;
}
}