Skip to content
Snippets Groups Projects
Unverified Commit 82762863 authored by Connor Wood's avatar Connor Wood
Browse files

Converted string to buffer

parent c6ecf105
No related branches found
No related tags found
1 merge request!48Fully implemented AML parser, some amendments to ACPI infrastructure
......@@ -147,6 +147,9 @@ impl AmlValue {
Ok(v)
},
AmlValue::String(ref s) => {
Ok(s.clone().into_bytes())
},
_ => Err(AmlError::AmlValueError)
}
}
......
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