summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos_eval.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-08-05 10:38:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-08-05 10:38:05 +0000
commita72c454eed187c0cccae23b32b7ad23108e2f3cb (patch)
tree9cb86a4a73ab02cdf2dde84660884b2cf10b95fd /cpukit/libfs/src/dosfs/msdos_eval.c
parentRegenerate. (diff)
downloadrtems-a72c454eed187c0cccae23b32b7ad23108e2f3cb.tar.bz2
Introduce msdos_status_t.
Diffstat (limited to 'cpukit/libfs/src/dosfs/msdos_eval.c')
-rw-r--r--cpukit/libfs/src/dosfs/msdos_eval.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos_eval.c b/cpukit/libfs/src/dosfs/msdos_eval.c
index 0bba0c0a5e..3fe7029138 100644
--- a/cpukit/libfs/src/dosfs/msdos_eval.c
+++ b/cpukit/libfs/src/dosfs/msdos_eval.c
@@ -69,14 +69,14 @@ msdos_set_handlers(rtems_filesystem_location_info_t *loc)
* (errno set appropriately)
*
*/
-int
+msdos_status_t
msdos_eval_path(
const char *pathname,
int flags,
rtems_filesystem_location_info_t *pathloc
)
{
- int rc = RC_OK;
+ msdos_status_t rc = RC_OK;
rtems_status_code sc = RTEMS_SUCCESSFUL;
msdos_fs_info_t *fs_info = pathloc->mt_entry->fs_info;
fat_file_fd_t *fat_fd = NULL;
@@ -250,14 +250,14 @@ err:
* RC_OK, filled pathloc for parent directory and name of new node on
* success, or -1 if error occured (errno set appropriately)
*/
-int
+msdos_status_t
msdos_eval4make(
const char *path,
rtems_filesystem_location_info_t *pathloc,
const char **name
)
{
- int rc = RC_OK;
+ msdos_status_t rc = RC_OK;
rtems_status_code sc = RTEMS_SUCCESSFUL;
msdos_fs_info_t *fs_info = pathloc->mt_entry->fs_info;
fat_file_fd_t *fat_fd = NULL;