From 8bbb37d1f80cd600116d81dc7f321e6d35e9125c Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 15 Apr 2011 11:13:21 +0000 Subject: 2011-04-15 Sebastian Huber * libfs/src/pipe/fifo.c: Fixed integer type. --- cpukit/ChangeLog | 2 +- cpukit/libfs/src/pipe/fifo.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit') diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index add14ed0a3..b5a4851f4d 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,6 +1,6 @@ 2011-04-15 Sebastian Huber - * libcsupport/src/ioctl.c: Fixed integer type. + * libcsupport/src/ioctl.c, libfs/src/pipe/fifo.c: Fixed integer type. 2011-04-11 Joel Sherrill diff --git a/cpukit/libfs/src/pipe/fifo.c b/cpukit/libfs/src/pipe/fifo.c index 9579954611..f7c4e96277 100644 --- a/cpukit/libfs/src/pipe/fifo.c +++ b/cpukit/libfs/src/pipe/fifo.c @@ -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; -- cgit v1.2.3