summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/memfile.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-12-08 07:18:27 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-12-08 07:18:27 +0000
commit7192476f7a9640986f9338f6ece9f0eec6ee8766 (patch)
tree98117cdc74f6b143e01681147779090bb0e4cf75 /cpukit/libfs/src/imfs/memfile.c
parent2006-12-08 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-7192476f7a9640986f9338f6ece9f0eec6ee8766.tar.bz2
Use size_t instead of uint32_t for read/write count-args.
Diffstat (limited to 'cpukit/libfs/src/imfs/memfile.c')
-rw-r--r--cpukit/libfs/src/imfs/memfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libfs/src/imfs/memfile.c b/cpukit/libfs/src/imfs/memfile.c
index 4b4dc8ccce..799715f06c 100644
--- a/cpukit/libfs/src/imfs/memfile.c
+++ b/cpukit/libfs/src/imfs/memfile.c
@@ -154,7 +154,7 @@ int memfile_close(
ssize_t memfile_read(
rtems_libio_t *iop,
void *buffer,
- uint32_t count
+ size_t count
)
{
IMFS_jnode_t *the_jnode;
@@ -173,7 +173,7 @@ ssize_t memfile_read(
ssize_t memfile_write(
rtems_libio_t *iop,
const void *buffer,
- uint32_t count
+ size_t count
)
{
IMFS_jnode_t *the_jnode;