summaryrefslogtreecommitdiffstats
path: root/cpukit
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
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')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/libcsupport/src/ioctl.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index e0bafb876b..add14ed0a3 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+ * libcsupport/src/ioctl.c: Fixed integer type.
+
2011-04-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* sapi/include/confdefs.h, score/cpu/i386/cpu.c: Fix typos so you
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;