Skip to content
Snippets Groups Projects
Commit 612b5588 authored by Ron Williams's avatar Ron Williams
Browse files

Fix getdents default error code

parent 9a2e8a31
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ dependencies = [ ...@@ -27,7 +27,7 @@ dependencies = [
[[package]] [[package]]
name = "redox-scheme" name = "redox-scheme"
version = "0.2.1" version = "0.2.2"
dependencies = [ dependencies = [
"libredox", "libredox",
"redox_syscall", "redox_syscall",
......
...@@ -171,7 +171,7 @@ pub trait SchemeMut { ...@@ -171,7 +171,7 @@ pub trait SchemeMut {
buf: DirentBuf<&'buf mut [u8]>, buf: DirentBuf<&'buf mut [u8]>,
opaque_offset: u64, opaque_offset: u64,
) -> Result<DirentBuf<&'buf mut [u8]>> { ) -> Result<DirentBuf<&'buf mut [u8]>> {
Err(Error::new(EBADF)) Err(Error::new(EOPNOTSUPP))
} }
#[allow(unused_variables)] #[allow(unused_variables)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment