summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/rtems/rtems_syscall.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-02-07 09:23:08 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-02-07 09:23:08 +0100
commit0f7913b9110ef1a45427f42558df1bc042f9af91 (patch)
tree546d0e2e455afb45af2ccc564d099290caad0eb6 /cpukit/libnetworking/rtems/rtems_syscall.c
parentstdio-redirector: Use self-contained mutex (diff)
downloadrtems-0f7913b9110ef1a45427f42558df1bc042f9af91.tar.bz2
network: Fix integer types
Diffstat (limited to '')
-rw-r--r--cpukit/libnetworking/rtems/rtems_syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libnetworking/rtems/rtems_syscall.c b/cpukit/libnetworking/rtems/rtems_syscall.c
index c7ff724e0f..5225b53beb 100644
--- a/cpukit/libnetworking/rtems/rtems_syscall.c
+++ b/cpukit/libnetworking/rtems/rtems_syscall.c
@@ -762,7 +762,7 @@ so_ioctl (rtems_libio_t *iop, struct socket *so, uint32_t command, void *buffe
}
static int
-rtems_bsdnet_ioctl (rtems_libio_t *iop, uint32_t command, void *buffer)
+rtems_bsdnet_ioctl (rtems_libio_t *iop, ioctl_command_t command, void *buffer)
{
struct socket *so;
int error;