Skip to content

Commit 0b60f8f

Browse files
Make VariableKey.name pub(crate)
This will allow it to be used in the new runtime module with freestanding functions.
1 parent 2f806e3 commit 0b60f8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uefi/src/table/runtime.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ impl TryFrom<&[u8]> for Time {
649649
#[cfg(feature = "alloc")]
650650
#[derive(Debug)]
651651
pub struct VariableKey {
652-
name: Vec<u16>,
652+
pub(crate) name: Vec<u16>,
653653
/// Unique identifier for the vendor.
654654
pub vendor: VariableVendor,
655655
}

0 commit comments

Comments
 (0)