Filesystem: PR1619: Use ENOSYS for default statvfs

POSIX does not specify an error number in case the file system does not
support this call.  Use the Linux value.
This commit is contained in:
Sebastian Huber
2012-11-22 17:33:13 +01:00
parent f1738ed619
commit acec386c75
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -19,5 +19,5 @@ int rtems_filesystem_default_statvfs(
struct statvfs *buf
)
{
rtems_set_errno_and_return_minus_one( ENOTSUP );
rtems_set_errno_and_return_minus_one( ENOSYS );
}