Skip to content

Commit 71eafe8

Browse files
committed
fix(dstack-mr): clippy op_ref lint in uefi_boot.rs
1 parent 870a6f9 commit 71eafe8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dstack-mr/src/uefi_boot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ fn compute_gpt_event_digest(disk_path: &str) -> Result<Vec<u8>> {
111111
break;
112112
}
113113
let type_guid = &data[entry_off..entry_off + 16];
114-
if type_guid != &[0u8; 16] {
114+
if type_guid != [0u8; 16] {
115115
actual_partitions.push(&data[entry_off..entry_off + entry_size]);
116116
}
117117
}

0 commit comments

Comments
 (0)