summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos_file.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_file.c
parentRegenerate. (diff)
downloadrtems-a72c454eed187c0cccae23b32b7ad23108e2f3cb.tar.bz2
Introduce msdos_status_t.
Diffstat (limited to 'cpukit/libfs/src/dosfs/msdos_file.c')
-rw-r--r--cpukit/libfs/src/dosfs/msdos_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos_file.c b/cpukit/libfs/src/dosfs/msdos_file.c
index 14bd96b325..12cf5ac6e7 100644
--- a/cpukit/libfs/src/dosfs/msdos_file.c
+++ b/cpukit/libfs/src/dosfs/msdos_file.c
@@ -455,10 +455,10 @@ msdos_file_ioctl(rtems_libio_t *iop,uint32_t command, void *buffer)
* RETURNS:
* RC_OK on success, or -1 if error occured (errno set appropriately)
*/
-int
+msdos_status_t
msdos_file_rmnod(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 = pathloc->node_access;