summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2011-04-15 10:27:10 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2011-04-15 10:27:10 +0000
commit3d2044481e40dc770e24e8251b9ae933b3b2bc50 (patch)
tree454a7af1f67c01a3b5aa76734f8cedb64388f1ba /cpukit/libcsupport
parent2011-04-15 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-3d2044481e40dc770e24e8251b9ae933b3b2bc50.tar.bz2
2011-04-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libcsupport/src/ioctl.c: Fixed integer type.
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/src/ioctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/ioctl.c b/cpukit/libcsupport/src/ioctl.c
index ae8a88bd77..1b55e8272c 100644
--- a/cpukit/libcsupport/src/ioctl.c
+++ b/cpukit/libcsupport/src/ioctl.c
@@ -32,7 +32,7 @@ int ioctl(
)
{
va_list ap;
- rtems_status_code rc;
+ int rc;
rtems_libio_t *iop;
void *buffer;