mirror of
https://github.com/rust-osdev/uefi-rs
synced 2026-08-26 18:26:05 -04:00
Merge pull request #1927 from rust-osdev/fix-typos
misc: update to typos 1.45
This commit is contained in:
commit
f6aa5a88fc
3 changed files with 3 additions and 3 deletions
2
.github/workflows/qa.yml
vendored
2
.github/workflows/qa.yml
vendored
|
|
@ -7,7 +7,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
# Executes "typos ."
|
||||
- uses: crate-ci/typos@v1.44.0
|
||||
- uses: crate-ci/typos@v1.45.0
|
||||
lints:
|
||||
name: Lints
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ pub struct GraphicsOutputProtocol {
|
|||
pub blt: unsafe extern "efiapi" fn(
|
||||
*mut Self,
|
||||
// Depending on `blt_operation`, this is an IN parameter (readable)
|
||||
// or an OUT parameter (writeable).
|
||||
// or an OUT parameter (writable).
|
||||
blt_buffer: *mut GraphicsOutputBltPixel,
|
||||
blt_operation: GraphicsOutputBltOperation,
|
||||
source_x: usize,
|
||||
|
|
|
|||
|
|
@ -407,7 +407,7 @@ pub fn run_qemu(arch: UefiArch, opt: &QemuOpt) -> Result<()> {
|
|||
|
||||
// Make a copy of the OVMF vars file so that it can be used
|
||||
// read+write without modifying the original. Under AArch64, some
|
||||
// versions of OVMF won't boot if the vars file isn't writeable.
|
||||
// versions of OVMF won't boot if the vars file isn't writable.
|
||||
let ovmf_vars = tmp_dir.join("ovmf_vars");
|
||||
fs_err::copy(&ovmf_paths.vars, &ovmf_vars)?;
|
||||
// Necessary, as for example on NixOS, the files are read-only inside
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue