summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/stat.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/libcsupport/src/stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/stat.c b/cpukit/libcsupport/src/stat.c
index 9218ca96d1..a39deda79e 100644
--- a/cpukit/libcsupport/src/stat.c
+++ b/cpukit/libcsupport/src/stat.c
@@ -62,7 +62,7 @@ int _STAT_NAME(
status = rtems_filesystem_evaluate_path( path, 0, &loc, _STAT_FOLLOW_LINKS );
if ( status != 0 )
return -1;
-
+
if ( !loc.handlers->fstat_h ){
rtems_filesystem_freenode( &loc );
rtems_set_errno_and_return_minus_one( ENOTSUP );
@@ -78,7 +78,7 @@ int _STAT_NAME(
status = (*loc.handlers->fstat_h)( &loc, buf );
rtems_filesystem_freenode( &loc );
-
+
return status;
}
#endif