* libfs/src/pipe/fifo.c: Fixed integer type.
This commit is contained in:
Sebastian Huber
2011-04-15 11:13:21 +00:00
parent 3d2044481e
commit 8bbb37d1f8
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
2011-04-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libcsupport/src/ioctl.c: Fixed integer type.
* libcsupport/src/ioctl.c, libfs/src/pipe/fifo.c: Fixed integer type.
2011-04-11 Joel Sherrill <joel.sherrill@oarcorp.com>

View File

@@ -154,7 +154,7 @@ static inline void pipe_free(
free(pipe);
}
static rtems_status_code pipe_lock(void)
static int pipe_lock(void)
{
rtems_status_code sc = RTEMS_SUCCESSFUL;