summaryrefslogtreecommitdiff
path: root/sysdeps/unix/bsd/tcflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/bsd/tcflow.c')
-rw-r--r--sysdeps/unix/bsd/tcflow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/bsd/tcflow.c b/sysdeps/unix/bsd/tcflow.c
index 1919d6d9ea..04895a0648 100644
--- a/sysdeps/unix/bsd/tcflow.c
+++ b/sysdeps/unix/bsd/tcflow.c
@@ -32,9 +32,9 @@ tcflow (fd, action)
switch (action)
{
case TCOOFF:
- return __ioctl (fd, TIOCSTOP, (PTR) NULL);
+ return __ioctl (fd, TIOCSTOP, (void *) NULL);
case TCOON:
- return __ioctl (fd, TIOCSTART, (PTR) NULL);
+ return __ioctl (fd, TIOCSTART, (void *) NULL);
case TCIOFF:
case TCION: