summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-04-28 09:37:49 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-04-28 09:37:49 +0200
commitd56d8a60695805d9a54bcc14fdaaae04e6c1ab53 (patch)
tree85166995d090a400b8975a912b3d49d240a0dc6a /testsuites/libtests
parentheap: Fix heap statistics with protection enabled (diff)
downloadrtems-d56d8a60695805d9a54bcc14fdaaae04e6c1ab53.tar.bz2
termios06: Fix warning
Update #4493.
Diffstat (limited to 'testsuites/libtests')
-rw-r--r--testsuites/libtests/termios06/test_pppd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/libtests/termios06/test_pppd.c b/testsuites/libtests/termios06/test_pppd.c
index 13b5fe2ee8..a6f68a956c 100644
--- a/testsuites/libtests/termios06/test_pppd.c
+++ b/testsuites/libtests/termios06/test_pppd.c
@@ -44,7 +44,7 @@ int pppread(struct rtems_termios_tty *tty, rtems_libio_rw_args_t *rw_args);
int pppwrite(struct rtems_termios_tty *tty, rtems_libio_rw_args_t *rw_args);
int pppioctl(struct rtems_termios_tty *tty, rtems_libio_ioctl_args_t *args);
int pppinput(int c, struct rtems_termios_tty *tty);
-int pppstart(struct rtems_termios_tty *tp);
+int pppstart(struct rtems_termios_tty *tp, int len);
/*
* Define the PPP line discipline.
@@ -116,7 +116,7 @@ int pppinput(int c, struct rtems_termios_tty *tty)
return 0;
}
-int pppstart(struct rtems_termios_tty *tp)
+int pppstart(struct rtems_termios_tty *tp, int len)
{
puts( "pppstart called" );
return 0;