summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos.h
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/dosfs/msdos.h
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/dosfs/msdos.h')
-rw-r--r--cpukit/libfs/src/dosfs/msdos.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos.h b/cpukit/libfs/src/dosfs/msdos.h
index b4ea6abe40..2fec769446 100644
--- a/cpukit/libfs/src/dosfs/msdos.h
+++ b/cpukit/libfs/src/dosfs/msdos.h
@@ -249,13 +249,13 @@ int msdos_file_close(rtems_libio_t *iop /* IN */);
ssize_t msdos_file_read(
rtems_libio_t *iop, /* IN */
void *buffer, /* IN */
- uint32_t count /* IN */
+ size_t count /* IN */
);
ssize_t msdos_file_write(
rtems_libio_t *iop, /* IN */
const void *buffer, /* IN */
- uint32_t count /* IN */
+ size_t count /* IN */
);
int msdos_file_lseek(
@@ -305,7 +305,7 @@ int msdos_dir_close(rtems_libio_t *iop /* IN */);
ssize_t msdos_dir_read(
rtems_libio_t *iop, /* IN */
void *buffer, /* IN */
- uint32_t count /* IN */
+ size_t count /* IN */
);
int msdos_dir_lseek(