2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>

* libfs/src/dosfs/msdos.h, libfs/src/dosfs/msdos_eval.c:
	Use size_t instead of int for pathnamelen.
This commit is contained in:
Ralf Corsepius
2010-05-27 16:23:04 +00:00
parent 596bead519
commit 9813fb6e1a
3 changed files with 5 additions and 3 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* libfs/src/dosfs/msdos.h, libfs/src/dosfs/msdos_eval.c:
Use size_t instead of int for pathnamelen.
* libfs/src/devfs/devfs.h, libfs/src/devfs/devfs_eval.c:
Use size_t instead of int for pathlen.
Use size_t instead of int for pathnamelen.
* libfs/src/nfsclient/src/nfs.c:
Use uint32_t instead of u_int_t for readarg and writearg.
+1 -1
View File
@@ -229,7 +229,7 @@ int msdos_shut_down(rtems_filesystem_mount_table_entry_t *temp_mt_entry);
int msdos_eval_path(
const char *pathname, /* IN */
int pathnamelen, /* IN */
size_t pathnamelen, /* IN */
int flags, /* IN */
rtems_filesystem_location_info_t *pathloc /* IN/OUT */
);
+1 -1
View File
@@ -72,7 +72,7 @@ msdos_set_handlers(rtems_filesystem_location_info_t *loc)
int
msdos_eval_path(
const char *pathname,
int pathnamelen,
size_t pathnamelen,
int flags,
rtems_filesystem_location_info_t *pathloc
)