summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos_node_type.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 08:34:41 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 08:34:41 +0000
commita5305f6b33159d425e6fc5beb6807a675f70ecc9 (patch)
treef55d224dfb3bd157f6e7422d66919df283207a07 /cpukit/libfs/src/dosfs/msdos_node_type.c
parent2004-04-17 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-a5305f6b33159d425e6fc5beb6807a675f70ecc9.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/libfs/src/dosfs/msdos_node_type.c')
-rw-r--r--cpukit/libfs/src/dosfs/msdos_node_type.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos_node_type.c b/cpukit/libfs/src/dosfs/msdos_node_type.c
index 124b445b35..877cf60492 100644
--- a/cpukit/libfs/src/dosfs/msdos_node_type.c
+++ b/cpukit/libfs/src/dosfs/msdos_node_type.c
@@ -33,7 +33,7 @@
/* msdos_node_type --
* Determine type of the node that the pathloc refers to.
- *
+ *
* PARAMETERS:
* pathloc - node description
*
@@ -41,18 +41,18 @@
* node type
*
*/
-rtems_filesystem_node_types_t
+rtems_filesystem_node_types_t
msdos_node_type(rtems_filesystem_location_info_t *pathloc)
{
fat_file_fd_t *fat_fd;
- /*
- * we don't need to obtain the volume semaphore here because node_type_h
- * call always follows evalpath_h call(hence link increment occured) and
- * hence node_access memory can't be freed during processing node_type_h
+ /*
+ * we don't need to obtain the volume semaphore here because node_type_h
+ * call always follows evalpath_h call(hence link increment occured) and
+ * hence node_access memory can't be freed during processing node_type_h
* call
*/
fat_fd = pathloc->node_access;
-
- return fat_fd->fat_file_type;
+
+ return fat_fd->fat_file_type;
}