mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-27 20:57:36 +08:00
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:
@@ -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 );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user