Skip to content
Snippets Groups Projects
Commit 9ecdc11d authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge branch 'physalloc3-fix' into 'master'

Add missing match item for `PartialAllocStrategy::Greedy`.

See merge request redox-os/syscall!48
parents 783a03dc eebf1c38
No related branches found
No related tags found
1 merge request!48Add missing match item for `PartialAllocStrategy::Greedy`.
Pipeline #7721 failed
......@@ -174,6 +174,7 @@ impl PartialAllocStrategy {
match raw {
0x0001_0000 => Some(Self::Optimal),
0x0002_0000 => Some(Self::GreatestRange),
0x0003_0000 => Some(Self::Greedy),
_ => None,
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment