summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking
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
parentstdio-redirector: Use self-contained mutex (diff)
downloadrtems-0f7913b9110ef1a45427f42558df1bc042f9af91.tar.bz2
network: Fix integer types
Diffstat (limited to 'cpukit/libnetworking')
-rw-r--r--cpukit/libnetworking/lib/ftpfs.c2
-rw-r--r--cpukit/libnetworking/rtems/rtems_syscall.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libnetworking/lib/ftpfs.c b/cpukit/libnetworking/lib/ftpfs.c
index 1e0f180fd0..5e0cb95dd3 100644
--- a/cpukit/libnetworking/lib/ftpfs.c
+++ b/cpukit/libnetworking/lib/ftpfs.c
@@ -1294,7 +1294,7 @@ static void rtems_ftpfs_unmount_me(
static int rtems_ftpfs_ioctl(
rtems_libio_t *iop,
- uint32_t command,
+ ioctl_command_t command,
void *arg
)
{
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;